Android 相当于 iOS 中的 NSUserDefaults
我想保存一些简单的数据。在 iPhone 上,我可以使用 NSUserDefaults
。
Android 中类似的命令是什么?
我只是保存一些变量,只要安装了应用程序就可以重复使用。我不想使用复杂的数据库来做到这一点。
I'd like to save some simple data. On the iPhone, I can do it with NSUserDefaults
in Objective-C.
What is the similar command here in Android?
I'm just saving a few variables, to be reused as long as the application is installed. I don't want to use a complicated database just to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我发现的最简单的解决方案:
其中“context”是当前上下文(例如,在活动子类中可以是this)。
This is the most simple solution I've found:
Where 'context' is the current context (e.g. in an activity subclass could be this).