How can I close my application on back pressed in android

后端 未结 12 1382
轻奢々
轻奢々 2021-01-14 00:04

I want to go on home screen when I press device\'s back button.I am using this code..

public void onBackPressed() {
   this.finish();
   return;
}

12条回答
  •  轮回少年
    2021-01-14 00:23

    You need to start an intent using a flag to clear the activities on top of the actual activity.

    public void onBackPressed() {
        Intent intent = new Intent(this, HomeActivity.class);
        intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
        this.startActivity(intent);
        this.finish();
    }
    

提交回复
热议问题