I pass information around in my app with ArrayList and Hashmap a lot, but for persistent storage of complex objects, can I use some kind of “Parcelable” or something to store generic object types – that I can restore and stuff – without creating a database and doing the db management functions?
just curious thats all
Thanks!
From the documentation :
Like Tim said, make your object Serializable, so that it can be flattened.