I have an ArrayList with custom objects. Each custom object contains a variety of strings and numbers. I need the array to stick around even if the user leaves the activity and then wants to come back at a later time, however I don't need the array available after the application has been closed completely. I save a lot of other objects this way by using the SharedPreferences but I can't figure out how to save my entire array this way. Is this possible? Maybe SharedPreferences isn't the way to go about this? Is there a simpler method?
|
|
||||
|
|
|
After API 11 the SharedPreferences Editor accept Sets. You could convert your List into a HashSet or something similar and store it like that. When your read it back, convert it into an ArrayList, sort it if needed and you're good to go.
You can also serialize your ArrayList and then save/read it to/from SharedPreferences. Below is the solution: EDIT: Ok, below is the solution to save ArrayList as serialized object to SharedPreferences and then read it from SharedPreferences. Because API supports only storing and retrieving of strings to/from SharedPreferences (after API 11, its simpler), we have to serialize and de-serialize the ArrayList object which has the list of tasks into string. In the
Similarly we have to retrieve the list of tasks from the preference in the
You can get ObjectSerializer class from Apache Pig project ObjectSerializer.java |
|||||||||||
|
|
Saving Array in Shared Preferences
Loading Array Data from Shared Preferences
|
|||||||
|
|
You can convert it to JSON String and store the string in the shared preferences. |
|||||||||||
|
|
You can convert it to a |
|||
|
|
|
Why don't you stick your arraylist on an Application class? It only get's destroyed when the app is really killed, so, it will stick around for as long as the app is available. |
|||
|
|
|
You could refer the serializeKey() and deserializeKey() functions from FacebookSDK's SharedPreferencesTokenCache class. It converts the supportedType into the JSON object and store the JSON string into SharedPreferences. You could download SDK from here
|
|||
|
|
|
best way is that convert to JSOn string using GSON and save this string to SharedPreference. I also use this way to cache responses. |
|||
|
|
|
The best way i have been able to find is a make a 2D Array of keys and put the custom items of the array in the 2-D array of keys and then retrieve it through the 2D arra on startup. I did not like the idea of using string set because most of the android users are still on Gingerbread and using string set requires honeycomb. Sample Code: here ditor is the shared pref editor and rowitem is my custom object.
|
|||
|
|