Android中行为不端的自定义复选框

时间:2013-04-13 10:55:28

标签: android android-layout

我想在我的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>

enter image description here

复选框drawable

<style name="myCustomCheckbox" parent="android:style/Widget.CompoundButton.CheckBox">
        <item name="android:button">@drawable/custom_checkbox</item>
    </style>

0 个答案:

没有答案