Interface in android same as Persistable in Blackberry
Which Interface in android is same as Persistable interface in开发者_如何学运维 Blackberry
I would suggest using the SharedPreferences if you're trying to have something that is similar to the PersistentStore
. You can make your object Serializable and then store a String you create from it into the SharedPreferences.
精彩评论