How can I close my application on back pressed in android

后端 未结 12 1392
轻奢々
轻奢々 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 can close application from anywhere to call this type of Intent:

    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.addCategory(Intent.CATEGORY_HOME);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(intent);
    

    This is the best way for close application from anywhere, on any click event

提交回复
热议问题