我有带有复选框的列表视图。问题在于设备和模拟器上显示的复选框不同。
这是它在模拟器中的样子:
以及它在设备上的外观:
您可以看到设备上的复选框已切掉右边缘。
这是@drawable/custom_checkbox_design.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true" android:drawable="@drawable/checked" />
<item android:state_checked="false" android:drawable="@drawable/unchecked" />
</selector>
和行布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<CheckBox
android:id="@+id/ColChk"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="40dp"
android:button="@drawable/custom_checkbox_design"
android:layout_gravity="center_vertical|center_horizontal" />
<TextView
android:id="@+id/ColOpis"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minLines="1"
android:scrollHorizontally="false"
android:text="Opis"
android:textSize="20sp" />
<TextView
android:id="@+id/ColCode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Code"
android:visibility="invisible" />
</LinearLayout>
我做错了什么?为什么在模拟器上显示正确?