How to store data from my app

前端 未结 5 878
无人共我
无人共我 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:29

    Android provides several options for you to save persistent application data. The solution you choose depends on your specific needs, such as whether the data should be private to your application or accessible to other applications (and the user) and how much space your data requires.

    Your data storage options are the following:

    Shared Preferences

    Store private primitive data in key-value pairs.

    Internal Storage

    Store private data on the device memory.

    External Storage

    Store public data on the shared external storage.

    SQLite Databases

    Store structured data in a private database.

    Network Connection

    Store data on the web with your own network server.

    Data Storage

提交回复
热议问题