作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我无法自定义我的复选框,虽然我已经在 xml 首选项文件中定义了背景,但它不会拉取文件。1. 我正在尝试为复选框显示自定义图像,并将选择器 xml 定义为“android_button.xml”,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checkable="true"
android:drawable="@drawable/state_normal" /> <!-- pressed -->
<item android:state_checked="true"
android:drawable="@drawable/android_pressed" /> <!-- focused -->
<item android:drawable="@drawable/state_normal" /> <!-- default -->
</selector>
state_normal 和 android_pressed 是 res>drawable 文件夹中的两个 .png 图像。
2.my Checkbox preference.xml 文件是:
<CheckBoxPreference android:key="@string/Drop_Option"
android:title="Close after call drop"
android:defaultValue="true"
android:background="@drawable/android_button"
/>
定义中是否有任何错误,屏幕中显示的唯一更改是 android:title 文本,如果我更改文本,它会更改文本。没有其他变化。我该如何解决。谢谢你的建议。
最佳答案
有两种方法可以实现你所需要的,第一种是在res/layout定义自定义复选框布局custom_chexbox.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:focusable="false"
android:clickable="false" android:button="@drawable/android_button"/>
那么你需要为偏好指定这个布局:
<CheckBoxPreference android:key="@string/Drop_Option"
android:title="Close after call drop" android:defaultValue="true"
android:widgetLayout="@layout/custom_checkbox"/>
第二种方法是创建自定义主题,重新定义复选框 View 的样式并将主题应用于首选项 Activity ,请参阅 How to customize the color of the CheckMark color in android in a dialog. : android了解详情。
关于android - 自定义复选框首选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3569412/
我是一名优秀的程序员,十分优秀!