如何在一项活动(而不是创建该活动的活动)中编辑共享首选项?

发布于 2024-12-11 09:28:39 字数 77 浏览 0 评论 0原文

我在活动中创建了一些共享首选项,我想在广播接收器中修改它......我该怎么做???请帮助...

我尝试过寻找但无法得到答案

I have created some shared preference in an activity and I want to modify it in a broadcast reciever...How can I do that??? Please help...

I have tried looking but couldn't get the answer

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幻梦 2024-12-18 09:28:40

您应该能够执行以下操作:

SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
SharedPreferences.Editor edit = prefs.edit();

使用传递到 BroadcastReceiver 的上下文。

You should be able to do:

SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
SharedPreferences.Editor edit = prefs.edit();

using the context passed into the BroadcastReceiver.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文