[android-developers] Re: Saved Instance State and ListViews

2008-10-10 Thread Stoyan Damov
I don't think that would work. You'll need to manually serialize the items. On Fri, Oct 10, 2008 at 4:49 PM, Mark Hansen [EMAIL PROTECTED] wrote: I think I'm missing something... I want to do something like. I have the list Adapater being set to a custom adapter... so I was trying to do it

[android-developers] Re: Saved Instance State and ListViews

2008-10-10 Thread Mark Hansen
The list is pulled from a remote feed over the web, so I was trying to prevent having to reload the listview via another web pull. Basically I just want the application to save everything and then restore itself when the user changes orientation, instead of having to make another full call back

[android-developers] Re: Saved Instance State and ListViews

2008-10-10 Thread Mark Hansen
Thanks for the input.. I ended up just saving out my data from the pull as suggested, it was already an ArrayList and I just jammed it in with the putSerializable and it works fine. Thanks for the help guys. On Oct 10, 10:26 am, Mark Murphy [EMAIL PROTECTED] wrote: Mark Hansen wrote: The

[android-developers] Re: Saved Instance State and ListViews

2008-10-10 Thread Mark Murphy
Mark Hansen wrote: The list is pulled from a remote feed over the web, so I was trying to prevent having to reload the listview via another web pull. I would recommend storing the data from the feed somewhere other than just in the ListView itself. Database, XML file, JSON file, whatever. If