jgostylo wrote: > Thank you for your reply. I have stepped through the code and have > seen what you are talking about. It calls onSaveInstanceState and > saves the data in the Bundle. Will this Bundle information be > available when the activity restarts after the OS kills the process? > I guess I did not check to see if the Bundle had that kind of > information when the app returned.
It's supposed to. You will get that Bundle in onCreate() and in onRestoreInstanceState(). onCreate() can be passed null for the Bundle, if there is no Bundle to restore. onRestoreInstanceState() is only called when there is a Bundle to restore. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Training: http://commonsware.com/training -- 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

