我设计了一个活动,其中有两个单选按钮
但是那些尺寸足够我要减小它
我使用的文字大小仅减少文字
如果布局尺寸减小,则仅减小视图而不是单选按钮圆圈

<RadioGroup
        android:id="@+id/RG1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <RadioButton
            android:id="@+id/N"
            android:layout_width="wrap_content"
            android:layout_height="30dip"
            android:text="Yes"
            android:textSize="12dip" />

        <RadioButton
            android:id="@+id/Y"
            android:layout_width="wrap_content"
            android:layout_height="30dip"
            android:checked="true"
            android:text="No"
            android:textSize="12dip" />
    </RadioGroup>

最佳答案

为此,您可以使用选择器

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/1"
    android:state_pressed="true"/>
<item android:drawable="@drawable/2"
    android:state_checked="true"/>
<item android:drawable="@drawable/3"
    android:state_focused="true" />
<item android:drawable="@drawable/4" />
</selector>

在单选按钮标签中,您可以添加
android:button="@drawable/above"
android:layout_height="20dp"
android:layout_width="wrap_content"

希望能帮助到你。您可能还想看看这个link

10-04 22:59