How can I close my application on back pressed in android

后端 未结 12 1405
轻奢々
轻奢々 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:38

    You can try this

    @Override
    public void onBackPressed() {
            Intent startMain = new Intent(Intent.ACTION_MAIN);      
            startMain.addCategory(Intent.CATEGORY_HOME);                        
            startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);          
            startActivity(startMain); 
      }
    

提交回复
热议问题