我正在使用单选按钮并将显示图像设置为按钮,但我的图像在给定宽度和高度的单选按钮中并不完整显示
的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" />