ListPreference 没有选择。怎样做?

发布于 2024-11-27 16:43:24 字数 159 浏览 0 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

梦初启 2024-12-04 16:43:24

如果为此ListPreference选择了首选项,那么它将保存在您的SharedPreferences中。您可以通过执行以下操作来测试此值:

private Boolean prefHasSelection(String prefId){
    SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context);
    String yourPref = sp.getString(prefId, null);
    return (yourPref != null);
}

prefHasSelection("yourPrefId"); // returns true if something is set

您可以在应用程序生命周期中的任何时刻调用此方法来确定是否已设置首选项。

If there is a preference selected for this ListPreference, then it will be saved in your SharedPreferences. You can test against this value by doing something like this:

private Boolean prefHasSelection(String prefId){
    SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context);
    String yourPref = sp.getString(prefId, null);
    return (yourPref != null);
}

prefHasSelection("yourPrefId"); // returns true if something is set

You could call this method at any point in your application lifecycle to determine if the preference has been set.

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