How to store data from my app

前端 未结 5 882
无人共我
无人共我 2020-12-06 19:02

Actually i want to know how to store data from my app in the device so that i can review the store data when i run the application again..

means in simple terms i wa

5条回答
  •  温柔的废话
    2020-12-06 19:44

    1) If you want to store data in table format then you can use SQLite database in android

    2) If you don't want to store data in table format then you can store in SharedPreference

    more info about SharedPreference here and here

提交回复
热议问题