0

我需要更改我的preferenceScreen中的选中和取消选中图标,我已经尝试了很多方法,但是所有方法都失败了,在我最后一次尝试中,我在默认值旁边添加了一个复选框

示例图像

我的 prefence.xml

<?xml version="1.0" encoding="utf-8"?>

<PreferenceCategory
    android:key="verbet"
    android:layout="@xml/category_preference_style"
    android:title="@string/verbetsContent" >
    <CheckBoxPreference
        android:key="noExample"
        android:widgetLayout="@xml/checkbox_preference_style"
        android:title="@string/noExample" />       
</PreferenceCategory>

我的 checkbox_preference_style.xml

<?xml version="1.0" encoding="utf-8"?>
<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+android:id/checkbox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical"
    android:layout_marginRight="4dip"
    android:background="@drawable/preference_checkbox"
    android:clickable="false"
    android:focusable="false" />

我已经尝试过使用android:layout,但结果我也无法改变他

我只想更改默认的复选框 ico(带有蓝色 cheked ico),

任何解决方案?

4

0 回答 0