ActionBar up navigation recreates parent activity instead of onResume

前端 未结 6 2026
天涯浪人
天涯浪人 2020-12-04 16:26

I\'m using the recommended approach for Up Navigation and my code looks like this:

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switc         


        
6条回答
  •  一整个雨季
    2020-12-04 17:02

    Add the following to your parent activity in the manifest file

    android:launchMode="singleTop"
    

    regarding to this answer

提交回复
热议问题