如何在运行时保存应用程序状态(自定义对象、向量、对象)?
我是一名 Android 新开发人员,正在寻找如何将自定义对象保存为持久数据。 如何保存和恢复对象?
我研究了几种方法,例如onSaveInstanceState和onRestoreInstanceState。 但没有方法保存Vector/Object/。而且我不知道如何在运行时保存。
你能给我推荐示例代码吗?
提前致谢。
I am a new developer for Android and searching about how to save custom object as persistent data.
How can I save an object and restore it ?
I've researched several methods such as onSaveInstanceState and onRestoreInstanceState.
But there is no method to save Vector/Object/. And I couldn't know how to save when it is on runtime.
Can you suggest me sample code ?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以做到的。
查看开发指南文档的数据存储部分。提供了多种持久保存数据的方法。这很容易学习。
顺便说一句,onSaveInstanceState和onRestoreInstanceState并不是保存持久数据的方式,数据只是在mem中操作。
You can do it.
Check up the Data storage section of Dev Guide doc. There provides several ways of saving data persistently. It`s easy to learn.
By the way, onSaveInstanceState and onRestoreInstanceState is not way of saving persistent data, the data is operated merely in mem.