我想在我的 android 应用程序中自定义复选框。为此,我创建了 2 个图像 check_on 和 check_off。但是我的复选框将在空格前移到左角而不是文本中心。为什么它会这样?下面是我的代码。
谢谢
<RelativeLayout
android:onClick="vmPlayer"
style="@style/contentRow"
android:layout_width="fill_parent"
android:layout_height="54dp"
android:clickable="true"
android:gravity="center_vertical" >
<CheckBox
android:id="@+id/voicemailCheckbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</CheckBox>
<TextView
android:id="@+id/voicemailname"
style="@style/TextViewStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignWithParentIfMissing="true"
android:layout_toRightOf="@+id/voicemailCheckbox"
android:singleLine="true"
android:text="james-panterranetworks-com"/>
<TextView
style="@style/TextViewStyle.medium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/voicemailname"
android:layout_below="@+id/voicemailname"
android:layout_toLeftOf="@+id/length"
android:singleLine="true"
android:text="Dec 19, 2012 / 14:25:07" />
<TextView
android:id="@+id/length"
style="@style/TextViewStyle.medium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/voicemailname"
android:layout_below="@+id/voicemailname"
android:text="00:32"
android:paddingRight="10dp"/>
</RelativeLayout>
复选框可绘制
<style name="myCustomCheckbox" parent="android:style/Widget.CompoundButton.CheckBox">
<item name="android:button">@drawable/custom_checkbox</item>
</style>