On Mon, Aug 31, 2009 at 12:51 PM, bkbonner<[email protected]> wrote: > > We have an Activity which has a form on it and we launch an Intent to > take a picture. > > We've overridden onSaveInstanceState and onRestoreInstanceState to > push the data from the view fields > > But, on the return from the CameraActivity, the onRestoreInstanceState > method is never called.
Is your onSaveInstanceState being called though? onSaveInstanceState and onRestoreInstanceState are only used when your activity is (temporarily) destroyed. See the documentation for the Activity class. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

