Perhaps I can use the Serializable interface and simply serialize On Tue, Sep 20, 2011 at 2:33 PM, Mark Murphy <[email protected]>wrote:
You probably should reconsider your approach. It sounds like you need > a central data model, accessible from multiple activities: > > -- database > -- file > > managed by: > > -- service > -- some other singleton > -- custom Application class > I think I'm gonna go for serialization and write the serialized object to a database in one row of text. That's the quick and dirty way of doing things I guess. Also, I'm done with Parcelable since I need to pass data back and forth. I've already reverted to passing a parameter in a global variable: it's the quickest and easiest way. Regards, John Goche -- 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

