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
I don't know if you have found an answer yet, but have you tried super.onBackPressed from within your overriding method?
If I were you, I would try:
@Override public void onBackPressed() { super.onBackPressed(); finish(); }