SharedPreferences or SQlite

后端 未结 4 747
Happy的楠姐
Happy的楠姐 2021-01-20 15:51

I\'m developing an Android AppWidget which displays a short text inputted from the configuration activity. I\'m a bit confused when it\'s comes to storing the data, should I

4条回答
  •  鱼传尺愫
    2021-01-20 16:24

    It totally depend on your data, which you want to store.

    sharedpreferences

    • Small data
    • Unstructured
    • Like login info, user preffs, etc

    Sqlite

    • large data
    • Structured
    • Organized

提交回复
热议问题