I\'m trying to close my app on a back button click. From the main screen, the back button takes you to a credits screen. From that credits screen, I want to close the app w
Try the following solution?
@Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { finish(); return true; } return super.onKeyDown(keyCode, event); }