How to serialize a Bundle?

Posted by hermo on Stack Overflow See other posts from Stack Overflow or by hermo
Published on 2010-04-08T07:35:10Z Indexed on 2010/04/09 5:13 UTC
Read the original article Hit count: 426

Filed under:
|
|

I'd like to serialize a Bundle object, but can't seem to find a simple way of doing it. Using Parcel doesn't seem like an option, since I want to store the serialized data to file.

Any ideas on ways to do this?

The reason I want this is to save and restore the state of my activity, also when it's killed by the user. I already create a Bundle with the state I want to save in onSaveInstanceState. But android only keeps this Bundle when the activity is killed by the SYSTEM. When the user kills the activity, I need to store it myself. Hence i'd like to serialize and store it to file. Of course, if you have any other way of accomplishing the same thing, i'd be thankful for that too.

Edit: I decided to encode my state as a JSONObject instead of a Bundle. The JSON object can then be put in a Bundle as a Serializable, or stored to file. Probably not the most efficient way, but it's simple, and it seems to work ok.

© Stack Overflow or respective owner

Related posts about android

Related posts about bundle