How To Save State Of Activity
Solution 1:
The documentation does a decent job of explaining different ways to handle configuration changes, including screen orientation changes. One of those methods, which is good for saving temporary state of the UI, is saving data in the onSavedInstanceState()
method--as @Jason Kuang mentioned.
Generally, you can rely on Android to save and restore the state of View
s without any special effort on your part. The source code for the protected
method onSaveInstanceState()
explains (emphasis added):
The default implementation takes care of most of the UI per-instance state for you by calling android.view.View.onSaveInstanceState() on each view in the hierarchy that has an id, and by saving the id of the currently focused view (all of which is restored by the default implementation of onRestoreInstanceState(android.os.Bundle)). If you override this method to save additional information not captured by each individual view, you will likely want to call through to the default implementation, otherwise be prepared to save all of the state of each view yourself.
This is a little deceptive, because the API documentation states that EditText
s and TextView
s must have android:freezesText="true"
explicitly declared on them in your layout XML files to ensure that Android automatically stores their state when onSaveInstanceState()
is invoked. I have not tested this recently, but it is what the source code seems to be doing. Therefore, handling temporary UI state on your own is best.
Another tip: You can explicitly prevent the storage of temporary data for a View
by calling setSaveEnabled(false)
on that View
. (This will not affect its children.)
As a rule, it's a good idea to manually save the on-screen state in your onPause()
method, and also in onSaveInstanceState()
.
Post a Comment for "How To Save State Of Activity"