gpt4 book ai didi

java - CheckBoxPreference 中的值未保留

转载 作者:搜寻专家 更新时间:2023-11-01 08:02:05 31 4
gpt4 key购买 nike

我的 xml 文件中有以下首选项:

<?xml version="1.0" encoding="utf-8"?>
<CheckBoxPreference android:title="Alert" android:widgetLayout="@layout/preference_checkbox" android:key="alert"
/>

我想制作我自己的自定义复选框,所以正如您在上面看到的,我给了这个首选项“android:widgetLayout”参数,它链接到这个文件:

<CheckBox 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/checkbox"
android:id="@+id/alert">

问题:使用 (widgetLayout) 参数,它不会保存复选框值。因此,如果我打开首选项,CheckBox 会被选中。然后,如果我取消选中它并再次打开首选项,则不会存储之前的值,或者它不会保留。如果我在没有参数“android:widgetLayou”的情况下使用 CheckBoxPreference,我就不会遇到这个问题,在这种情况下,值被存储。

有什么想法吗?

最佳答案

您可以通过以下方式简单地修复它:

1- 将复选框 id 更改为 android:id="@android:id/checkbox

2- 设置这 3 个属性:

android:focusableInTouchMode="false"

android:clickable="假"

android:focusable="false"

<CheckBox 
android:id="@android:id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/checkbox"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false" >

关于java - CheckBoxPreference 中的值未保留,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19821979/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com