Android 在应用程序上下文中存储某些内容
有很多示例和指南如何获取 ApplicationContext
,但是找不到一些示例,这些示例使我能够在 ApplicationContext
中存储一些值。 例如,我想在我的应用程序中的任何地方都使用字符串模式,如下所示:
String mode = getApplicationContext().getMode();
我怎样才能做到这一点?
There is a lot of examples and guides how to get ApplicationContext
, but a cannot find some examples which provide me an ability to store some values in ApplicationContext
.
I want to get, for example, string mode everywhere in my application, like this:
String mode = getApplicationContext().getMode();
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须扩展
Application
(没有ApplicationContext
类)并将需要存储的字段添加到自定义类中。然后,您将从getApplication()
获得的引用转换为实际的类:You have to extend
Application
(there is noApplicationContext
class) and add the fields you need stored to your custom class. Then you would cast the reference you get fromgetApplication()
to your actual class:为什么不将其存储在共享首选项中?
why don't you store it in shared preferences?