Android:读取代码中的首选项

发布于 2024-12-06 10:11:13 字数 314 浏览 0 评论 0原文

有没有办法在 PreferenceActivity 中执行与 Preference 相关的操作?我一直在使用这个:

CheckBoxPreference thing = (CheckBoxPreference) findPreference("thing");
thing.setChecked(true);

第一行运行正常,但第二行导致 NullPointerException。这些行位于我的代码中的 onCreate() 方法内。理想情况下,我想使用 onClicked() 信号,以便在首选项更改时可以运行某些方法。有谁知道我做错了什么?

Is there a way to perform an action related to a Preference in a PreferenceActivity? I've been using this:

CheckBoxPreference thing = (CheckBoxPreference) findPreference("thing");
thing.setChecked(true);

The first line runs okay but the second line results in a NullPointerException. These lines are inside the onCreate() method in my code. Ideally I want to use an onClicked() signal so that I can run certain methods when preferences are changed. Does anyone know what I'm doing wrong?

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

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

发布评论

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

评论(3

醉生梦死 2024-12-13 10:11:13

我认为你应该使用 onSharedPreferenceChangedListener ,你可以在 PreferenceScreen

http:// developer.android.com/reference/android/preference/PreferenceScreen.html

I think you should be using an onSharedPreferenceChangedListener which you can set on a PreferenceScreen

http://developer.android.com/reference/android/preference/PreferenceScreen.html

花辞树 2024-12-13 10:11:13

事物为空 -->也许对“事物”参考的偏好不存在

我建议您阅读 这个问题

thing is NULL -- > maybe then prefference with 'thing' refference doesn't exist

I recomend you to read this Question

别忘他 2024-12-13 10:11:13

public Preference findPreference (CharSequence key),那么 thing 参数是什么 ⇒ 尝试 findPreference("thing")

更新: 该博客条目可能对您有用。

public Preference findPreference (CharSequence key), so what is the thing argument ⇒ try findPreference("thing")

Update: That blog entry may be of use to you.

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