On Thu, Jan 20, 2011 at 1:48 PM, Chris <[email protected]> wrote: > I'm trying to save the state of my app while I shut it down but every > time I bring it back up savedInstanceState is always null..? >
If your app is shut down completely, there is no state to save. > I couldn't seem to find much info on calling onSaveInstanceState properly > so here's what I did > http://developer.android.com/reference/android/app/Activity.html#onSaveInstanceState(android.os.Bundle) http://developer.android.com/guide/topics/fundamentals.html#actlife <http://developer.android.com/reference/android/app/Activity.html#onSaveInstanceState(android.os.Bundle)> > > onPause () > {... > Bundle test = new Bundle(); > this.onSaveInstanceState(test); > } > You're not supposed to be calling onSaveInstanceState - the system does this for you as an indication that you are liable for axing. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

