Android - Back button in the title bar

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

    Toolbar toolbar=findViewById(R.id.toolbar);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    
    if (getSupportActionBar()==null){
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        getSupportActionBar().setDisplayShowHomeEnabled(true);
    }
    
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
    if(item.getItemId()==android.R.id.home)
        finish();
    return super.onOptionsItemSelected(item);
    }
    

提交回复
热议问题