Regarding general settings in android

iam takes data from the user and saves it in the list, and now I want to store several elements of the list data in the general settings in android, this is possible.

+4
source share
1 answer

SharedPreferences are not an ideal repository for data lists.

Even if you can do this, you better consider using a database: http://developer.android.com/guide/topics/data/data-storage.html#db

+1
source

Source: https://habr.com/ru/post/1347519/


All Articles