raj
raj

Reputation: 753

Regarding shared preferences in android

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

Answers (1)

Kevin Gaudin
Kevin Gaudin

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

Related Questions