Persistent Data Storage in Android Development

后端 未结 2 1872
余生分开走
余生分开走 2020-12-04 00:55

I\'m new to Java and Android development and I want to ask what are the available method to store a data to a persistent storage? Like for example I want to store a collecti

2条回答
  •  -上瘾入骨i
    2020-12-04 01:31

    As you said in your question itself you can use file or database.If more data is there then you can go for file and database(SQLITE) or else if small data then you can also go for SharedPreferences.Below is one link where its all about datastorage in android all from documentaion.Hope it will help you. :)

    Here is link

提交回复
热议问题