I'm trying to figure out the best way to store an ArrayList<HashMap<String, String>>
item so that it's accessible across activities. In one activity, I store it like by adding a series of HashMap<String, String>
items to the ArrayList.
How would I go about accessing this in another activity? I tried SharedPreferences, but it will only store it as a string, as far as I know. Any suggestions?
Edit: I'm storing XML in the HashMap in the form of of tag, value