If not, is there any workaround? I have an array list of objects that have a name and an icon pointer. I do not want to use a database.
|
feedback
|
|
So from the android developer site on Data Storage:
So I think it is okay since it is simply just key-value pairs which are persisted. To the original poster, this is not that hard. You simply just iterate through your array list and add the items. In this example I use a map for simplicity but you can use an array list and change it appropriately:
You would do something similar to read the key-value pairs again. Let me know if this works. Update: If you're using API level 11 or later, there is a method to write out a String Set | |||||
feedback
|
|
Shared preferences introduced a Android does not provide better methods, and looping over maps and arrays for saving and loading them is not very easy and clean, specially for arrays. But a better implementation isn't that hard:
Now you can save any collection in shared preferences with this five methods. Working with There is no size limit for shared preferences (besides device's storage limits), so these methods can work for most of usual cases where you want a quick and easy storage for some collection in your app. But JSON parsing happens here, and preferences in Android are stored as XMLs internally, so I recommend using other persistent data store mechanisms when you're dealing with megabytes of data. | |||||||
feedback
|
|
I loaded an array of waist sizes (already created in my array.xml) into my preferences.xml file with the code below. @array/pant_inch_size is the id of the entire array.
This populated the menu with choices from the array. I set the default size as 34, so when the menu pops up, they see size 34 is pre-selected. | |||||
feedback
|