Android: Go back to previous activity

前端 未结 23 1804
抹茶落季
抹茶落季 2020-11-22 06:52

I want to do something simple on android app. How is it possible to go back to a previous activity.

What code do I need to go back to previous activity

23条回答
  •  误落风尘
    2020-11-22 07:38

     @Override
     public boolean onOptionsItemSelected(MenuItem item) {
          int id = item.getItemId();
    
          if ( id == android.R.id.home ) {
              finish();
              return true;
          }
    
          return super.onOptionsItemSelected(item);
     }
    

    Try this it works both on toolbar back button as hardware back button.

提交回复
热议问题