How to exit when back button is pressed?

前端 未结 12 1295
名媛妹妹
名媛妹妹 2020-11-27 11:47

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?

12条回答
  •  青春惊慌失措
    2020-11-27 12:13

    Use onBackPressedmethod

    @Override
    public void onBackPressed() {
        finish();
        super.onBackPressed();
    }
    

    This will solve your issue.

提交回复
热议问题