Android アプリのチェックボックスをカスタマイズしたい。そのために、check_on と check_off の 2 つのイメージを作成しました。しかし、私のチェックボックスは、スペースの前のテキストの中央ではなく左隅になります。なぜそのように振る舞うのですか?以下は私のコードです。
ありがとう
<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>