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

前端 未结 30 2591
迷失自我
迷失自我 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 06:03

    onSaveInstance will be called if a user rotates the screen so that it can load resources associated with the new orientation.

    It's possible that this user rotated the screen followed by pressing the back button (because it's also possible that this user fumbled their phone while using your app)

提交回复
热议问题