how to override action bar back button in android?

前端 未结 10 704
孤街浪徒
孤街浪徒 2020-11-30 03:40

I want to customize the activity back button in action bar, not in hard key back button. I have overriden the onBackPressed() method. It works with my emulator

10条回答
  •  北海茫月
    2020-11-30 04:02

    If you want ActionBar back button behave same way as hardware back button:

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

提交回复
热议问题