Enable action bar back button like hardware back button

后端 未结 2 1999
误落风尘
误落风尘 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;
    

提交回复
热议问题