我想将 4 个图像添加到首选项屏幕中的复选框首选项中。或者有什么方法可以让我将 4 张图像放在一行中,最后在首选项屏幕中的复选框。
问问题
318 次
1 回答
0
尝试这个:
custom_check.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="XXXXX"
android:defaultValue="true"
android:widgetLayout="@layout/custom_check"/>
于 2015-10-23T21:01:51.557 回答