Android:读取代码中的首选项
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为你应该使用 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
事物为空 -->也许对“事物”参考的偏好不存在
我建议您阅读 这个问题
thing is NULL -- > maybe then prefference with 'thing' refference doesn't exist
I recomend you to read this Question
public Preference findPreference (CharSequence key)
,那么 thing 参数是什么 ⇒ 尝试findPreference("thing")
更新: 该博客条目可能对您有用。
public Preference findPreference (CharSequence key)
, so what is the thing argument ⇒ tryfindPreference("thing")
Update: That blog entry may be of use to you.