onRestoreInstanceState not called when screen wake up?

前端 未结 3 1992
悲哀的现实
悲哀的现实 2020-12-21 09:51

I\'ve wrote all the needed code to save my Activity state (a simple form with EditText widgets) and restore it on phone rotation and it works great.

My problem is on

3条回答
  •  醉话见心
    2020-12-21 10:19

    The onRestoreInstanceState method is called only if the activity process is killed(due to memory constraints or some other reasons) and then restored when it becomes visible again. On the phone rotation, the activity is killed and restored with different orientation so it will work. But on screen on/off it wouldn't be the case. The activity has not been destroyed so no need for restore

提交回复
热议问题