Enable action bar back button like hardware back button

后端 未结 2 1997
误落风尘
误落风尘 2021-01-13 03:51

I have many fragments in an activity. I move to some activity from one of the fragments. There are two cases. If I press hardware back button, I move back to the fragment fr

相关标签:
2条回答
  • 2021-01-13 04:35

    In the switch statement, change

    case android.R.id.home:
        NavUtils.navigateUpFromSameTask(this);
        return true;
    

    to

    case android.R.id.home:
        onBackPressed();
        return true;
    
    0 讨论(0)
  • 2021-01-13 04:48

    You can call the method onBackPressed(); of the Activity to give you the ability to back button just like the hardware back button.

    if you are in fragment call getActivity().onBackPressed()

    0 讨论(0)
提交回复
热议问题