我想添加4图像到首选项屏幕的复选框首选项。或是否有任何方法可以让我在一行中放置4个图像,并在首选项屏幕中的结束复选框。
试试这个:
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"/>