0
How do I add new item to arraylist without overwriting the previous one ?
I am trying to save string to ArrayList in sharedpreferences android. Each time new value gets added previous one is not available. How do I solve it ?
2 Antworten
+ 2
Load the old values in a list. Add the new values to that list. Save the resulting list.
0
Thanks. Did that.. saved to string builder.