I'm trying to save the state of an activity using the methods onSaveInstanceState () and onRestoreInstanceState ().
The problem is that it never enters the onRestoreInstanceState method (). Can anyone explain to me why this is?
feedback
|
|
Usually you restore your state in onCreate. It is possible to restore it in onRestoreInstanceState as well, but not very common. (onRestoreInstanceState is called after onStart, whereas onCreate is called before onStart. Use the put methods to store values in onSaveInstanceState:
And restore the values in onCreate:
You do not have to store view states, as they are stored automatically. | |||||||||||||||
feedback
|
|
In contrast: if you are in your activity and you hit Other source of confusion is that when an app loses focus to another app All in all, as stated in the documentation for
As I read it: There is no reason to override | ||||
feedback
|
|
The state you save at | |||
|
feedback
|