Showing posts with label Java Android Programming Snippet Example Serialization. Show all posts
Showing posts with label Java Android Programming Snippet Example Serialization. Show all posts

Wednesday, June 29, 2011

Object Serialization in Android

For my current project I wanted to create a persistent list of applications to be called later. I didn't want to use SharedPreferences because the data is stored as key value pairs.
Serialization can work with any object into a file provided it extends Serializeable. This is very useful for saving custom objects to call later.