I have a launcher Activity that load and resize big bitmap as it\'s background when it opens.
Activity
Whenever hit the back button, the Activity is
Add following code for it
@Override protected void onDestroy() { //android.os.Process.killProcess(android.os.Process.myPid()); super.onDestroy(); if(scaledBitmap!=null) { scaledBitmap.recycle(); scaledBitmap=null; } }