单选按钮可绘制按钮图像未完全显示

时间:2016-11-09 17:37:33

标签: android xml

我正在使用单选按钮并将显示图像设置为按钮,但我的图像在给定宽度和高度的单选按钮中并不完整显示

The image i am using

的xml:

  <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp">

            <RadioGroup
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:orientation="horizontal"
                android:id="@+id/RadioButton"
                >

                <RadioButton
                    android:layout_height="match_parent"
                    android:id="@+id/Sell"
                    android:button="@drawable/for_sell"
                    android:layout_width="200dp"

                    />

                <RadioButton
                    android:layout_marginLeft="20dp"
                    android:layout_width="wrap_content"
                    android:layout_height="match_parent"
                    android:id="@+id/Rent" />

绘制对象:

<?xml version="1.0" encoding="utf-8"?>

<item android:state_checked="false" android:drawable="@drawable/builder" />
<item android:state_checked="true" android:drawable="@drawable/builder_color" />

和我的Resulting Activity

0 个答案:

没有答案