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?

link|improve this question

0% accept rate
9  
You should really consider accepting an answer! – erikb Aug 3 '11 at 9:22
feedback

3 Answers

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:

protected void onSaveInstanceState(Bundle icicle) {
  icicle.putLong("param", value);
  super.onSaveInstanceState(outState);
}

And restore the values in onCreate:

public void onCreate(Bundle icicle) {
  if (icicle != null){
    value = icicle.getLong("param");
  }
}

You do not have to store view states, as they are stored automatically.

link|improve this answer
the problem is that I use startActivity to return to activity A. When returning to activity B, the object is null icicle. – Forte Apache Nov 5 '10 at 12:32
2  
If I understand correctly, this is what you are doing: From B you call startActivity(A). Then from A you call finish() to get back to B. Right? In that case Your first activity, B will not have been destroyed, and neither onCreate() nor onRestoreInstanceState() will be called. These methods are only called when needed, that is when an activity has been destroyed and needs to be recreated by the system. – Robert Nov 5 '10 at 13:57
I should add that your first activity, B, might get destroyed due to low memory conditions. This will trigger the onCreate and onRestoreInstanceState. – Robert Nov 5 '10 at 13:59
@Robert does that mean, the state of B should still be available after A? – erikb Aug 3 '11 at 9:22
1  
erikb, yes, activity B will be resumed, or in case the OS has reclaimed it, recreated and then resumed. – Robert Aug 9 '11 at 21:09
feedback

onRestoreInstanceState() is called only when recreating activity after it was killed by the OS. Such situation happen when:

  • orientation of the device changes (your activity is destroyed and recreated)
  • there is another activity in front of yours and at some point the OS kills your activity in order to free memory (for example). Next time when you start your activity onRestoreInstanceState() will be called.

In contrast: if you are in your activity and you hit Back button on the device, your activity is finish()ed (i.e. think of it as exiting desktop application) and next time you start your app it is started "fresh", i.e. without saved state because you intentionally exited it when you hit Back.

Other source of confusion is that when an app loses focus to another app onSaveInstanceState() is called but when you navigate back to your app onRestoreInstanceState() may not be called. This is the case described in the original question, i.e. if your activity was NOT killed during the period when other activity was in front onRestoreInstanceState() will NOT be called because your activity is pretty much "alive".

All in all, as stated in the documentation for onRestoreInstanceState():

Most implementations will simply use onCreate(Bundle) to restore their state, but it is sometimes convenient to do it here after all of the initialization has been done or to allow subclasses to decide whether to use your default implementation. The default implementation of this method performs a restore of any view state that had previously been frozen by onSaveInstanceState(Bundle).

As I read it: There is no reason to override onRestoreInstanceState() unless you are subclassing Activity and it is expected that someone will subclass your subclass.

link|improve this answer
yeh this seems to be right, but it sucks. imo it should be also run when returning to the activity from another activity. there are plenty of situations where you need this. – masi Jan 28 at 17:48
feedback

The state you save at onSaveInstanceState() is later available at onCreate() method invocation. So use onCreate (and its Bundle parameter) to restore state of your activity.

link|improve this answer
can you give me an example (code snippet)? – Forte Apache Nov 4 '10 at 11:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.