getting exception “IllegalStateException: Can not perform this action after onSaveInstanceState”

前端 未结 30 2646
迷失自我
迷失自我 2020-11-22 05:12

I have a Live Android application, and from market i have received following stack trace and i have no idea why its happening as its not happening in application code but it

30条回答
  •  不要未来只要你来
    2020-11-22 05:51

    You may be calling fragmentManager.popBackStackImmediate(); when activity is paused. Activity is not finished but is paused and not on foreground. You need to check whether activity is paused or not before popBackStackImmediate().

提交回复
热议问题