How can I close my application on back pressed in android

后端 未结 12 1271
轻奢々
轻奢々 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条回答
  •  -上瘾入骨i
    2021-01-14 00:36

    Easy way is to just finish the current activity when you are moving to the next activity.

    Just do a finish() after your startActivity(), then on back press from the any activity you can simply call finish() to come out of the application as all the other activities are not there in the stack.

提交回复
热议问题