Android - Back button in the title bar

前端 未结 26 2315
南方客
南方客 2020-12-04 07:02

In many apps (Calendar, Drive, Play Store) when you tap a button and enter a new activity, the icon in the title bar turns into a back button, but for the app I am making, i

26条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-04 07:33

    use this code

     @Override
     public void onCreate(Bundle savedInstanceState) {
        ...
       getActionBar().setDisplayHomeAsUpEnabled(true);
     } 
    

    after that write this code in onOptionsItemSelected method

      int id = item.getItemId();
    
         if (id==android.R.id.home) {
            finish();
        }
    

提交回复
热议问题