Android - Back button in the title bar

前端 未结 26 2333
南方客
南方客 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:38

    If you are using the new support library for 5.1 in android studio, you can instead use this on your AppCompatActivity

     ActionBar actionBar = getSupportActionBar();
     actionBar.setHomeButtonEnabled(true);
     actionBar.setDisplayHomeAsUpEnabled(true);
     actionBar.setHomeAsUpIndicator(R.mipmap.ic_arrow_back_white_24dp);
     actionBar.setDisplayShowHomeEnabled(true);
    

    cheers.

提交回复
热议问题