Reputation: 753
iam taking the data from user and storing in list and now i want to store the multiple data items of the list in shared preferences in android is it possible.
Upvotes: 4
Views: 362
Reputation: 9945
SharedPreferences are not the ideal storage for data lists.
Even if you can do it, you would better consider using a database: http://developer.android.com/guide/topics/data/data-storage.html#db
Upvotes: 1