在 AppWidget Provider 中获取首选项

发布于 2024-08-30 19:07:43 字数 377 浏览 5 评论 0原文

我似乎无法从 AppWidgetProvider 类中读取首选项。我的代码可以在 Activity 中运行,但不能在 AppWidgetProvider 中运行。这是我用来读回布尔值的代码:

SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
boolean autoreplyon = settings.getBoolean("autoreplyon", false);

但是,我收到“方法 getSharedPreferences(String, int) 对于类型小部件未定义”错误(小部件是我的 AppWidgetProvider 类的名称)。

预先感谢您的任何建议!

I seem to be having trouble reading preferences from my AppWidgetProvider class. My code works in an Activity, but it does not in an AppWidgetProvider. Here is the code I am using to read back a boolean:

SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
boolean autoreplyon = settings.getBoolean("autoreplyon", false);

However, I get the "The method getSharedPreferences(String, int) is undefined for the type widget" error (widget is the name of my AppWidgetProvider class).

Thanks in advance for any suggestions!

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

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

发布评论

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

评论(2

城歌 2024-09-06 19:07:43

getSharedPreferences()(如果您选择使用它)仅在 Context 的子类上可用,例如 ActivityService >。 AppWidgetProviderBroadcastReceiver 的子类,它不是 Context

话虽这么说,如果您要使用 PreferenceScreen 系统,或者如果您不确定它一定是 getSharedPreferences(),我会使用 相反,PreferenceManager.getDefaultSharedPreferences()。这些是 PreferenceScreen/PreferenceActivity 将使用的 SharedPreferences

getSharedPreferences(), should you choose to use it, is only available on subclasses of Context, like Activity or Service. AppWidgetProvider is a subclass of BroadcastReceiver, which is not a Context.

That being said, if you are going to use the PreferenceScreen system, or if you are not certain that it's gotta gotta gotta be getSharedPreferences(), I would use PreferenceManager.getDefaultSharedPreferences() instead. Those are the SharedPreferences that PreferenceScreen/PreferenceActivity will use.

谷夏 2024-09-06 19:07:43

您应该已在小部件的 onUpdate() 方法中传递了一个上下文,以便您可以调用 context.getSharedPreferences()

对于每个应用程序小部件的首选项,我使用了这个:

public static String getSharedPreferencesNameForAppWidget(Context context, int appWidgetId) {
    return context.getPackageName() + "_preferences_" + appWidgetId;
}

public static SharedPreferences getSharedPreferencesForAppWidget(Context context, int appWidgetId) {
    return context.getSharedPreferences(
        getSharedPreferencesNameForAppWidget(context, appWidgetId), 0);
}

You should have been passed a context in widget's onUpdate() method so you can call context.getSharedPreferences().

For per-appwidget preferences, I have used this:

public static String getSharedPreferencesNameForAppWidget(Context context, int appWidgetId) {
    return context.getPackageName() + "_preferences_" + appWidgetId;
}

public static SharedPreferences getSharedPreferencesForAppWidget(Context context, int appWidgetId) {
    return context.getSharedPreferences(
        getSharedPreferencesNameForAppWidget(context, appWidgetId), 0);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文