Android - Back button in the title bar

前端 未结 26 2313
南方客
南方客 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条回答
  •  -上瘾入骨i
    2020-12-04 07:29

    All you need to do in 2020:
    (considering you want to return to the MainActivity)

    protected void onCreate(Bundle savedInstanceState){
        ...
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    }
    
    public boolean onOptionsItemSelected(MenuItem item) {
        Intent myIntent = new Intent(getApplicationContext(), MainActivity.class);
        startActivityForResult(myIntent, 0);
        return true;
    }
    

提交回复
热议问题