When a user presses the back button on an intent, the application should quit. How can I ensure the application quits when the back button is pressed?
Use onBackPressedmethod
onBackPressed
@Override public void onBackPressed() { finish(); super.onBackPressed(); }
This will solve your issue.