ListPreference 没有选择。怎样做?
我有一个 ListPreference,想要验证是否没有选择进行一些代码/处理。我该怎么做? 我有这个来验证选择:
if (Integer.valueOf(choice) == 0) {
如果没有选择,需要验证什么代码? 感谢您的帮助。
I have a ListPreference and want to verify if there is no selection to make some code/treatement. How can i do this ?
I have this to verify the selection:
if (Integer.valueOf(choice) == 0) {
What code to verify if not selection?
Thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果为此
ListPreference
选择了首选项,那么它将保存在您的SharedPreferences
中。您可以通过执行以下操作来测试此值:您可以在应用程序生命周期中的任何时刻调用此方法来确定是否已设置首选项。
If there is a preference selected for this
ListPreference
, then it will be saved in yourSharedPreferences
. You can test against this value by doing something like this:You could call this method at any point in your application lifecycle to determine if the preference has been set.