复选框首选项 onClick()
我想实现一个由两部分组成的偏好屏幕。如果单击复选框,第一个类别应锁定,第二个类别应解锁。如果不是,则反转。现在我发现只有当我转到上一个活动然后转到新的(sharedPreferences)时它才有效。我应该覆盖哪个侦听器以及如何覆盖?
I want to implement a 2 part preference screen. If checkbox is clicked, first category should lock and 2nd one unlock. If it's not, reverse. Now I see it only works if I go to previous activity and then to new (sharedPreferences). What listener should I override and how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试以下操作:
并禁用您想要的类别。
You could try something like:
And disable your desired categories.
我已将我的偏好活动实现为一个扩展 PreferenceActivity 并实现 OnSharedPreferenceChangeListener 的类
I have implemented my preference activity as a class which extends PreferenceActivity and implements OnSharedPreferenceChangeListener