Easy way to save values through many appstarts?

北慕城南 提交于 2019-12-30 13:43:12

问题


is there a way to save values through various starts of an app? I need to save some statistics (records of a game). In objective-c I used UserDefaults, what's it in Java? If possible I'd like to take a simple way (one line of code).


回答1:


one line of code

No, that's not going to happen. But if you just have simple data and not much of it then you can use SharedPreferences

There is a good, basic example of using SharedPreferences here in the docs

But if you are going to be storing a lot of data for a game then you probably want to implement an SQLite DB

See Storage Options for what will work best for you.



来源:https://stackoverflow.com/questions/22441056/easy-way-to-save-values-through-many-appstarts

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!