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 this to your code
@Override public boolean onKeyDown(int keyCode, KeyEvent event) { if ((keyCode == KeyEvent.KEYCODE_BACK)) { finish(); } return super.onKeyDown(keyCode, event); }