Android:如何保存/恢复数据
在我的应用程序中,我有一个链接列表(我使用标准 List())。 我希望每次用户退出应用程序时将此列表保存到 SD 卡(或手机内存),并在每次用户启动应用程序时恢复它。 我该怎么办?
In my app I have a Linked List (I use the standard List()).
I want this list to be saved to the sd card (or the phone memory) every time the user exits the app and restore it every time the user starts the app.
How can I do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
SharedPreferences
,请参阅doc 和这个教程来了解如何做到这一点:)you can use
SharedPreferences
, refer the doc , and this tutorial to understand how to do it :)Android 开发人员 网站提供了一个很好的指南,帮助您存储您的数据手机上的数据。
The Android Developer site has an excellent guide how you can store your data on the phone.