如何在不使用新图像的情况下减小android中单选按钮上显示的图像大小

时间:2012-03-17 06:16:38

标签: android android-layout android-2.1-eclair

我设计了一个活动,其中有两个单选按钮 但是那些尺寸绰绰有余我想减少它 我使用的文本大小只减少文本 如果布局大小减少,只减少视图而不是单选按钮圈

<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>

5 个答案:

答案 0 :(得分:2)

为此,您可以使用选择器

<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> 

并在radiobutton标签中添加

android:button="@drawable/above"
android:layout_height="20dp"
android:layout_width="wrap_content"

希望有所帮助。您可能还想查看此link

答案 1 :(得分:0)

我认为此链接可能对您有用:Android: How to change the Size of the RadioButton

您可能会强制使用其他图片作为背景

答案 2 :(得分:0)

这段代码对我有用!

button.getCompoundDrawables();
compoundDrawables[1].setBounds(10, 10, 90, 90);

答案 3 :(得分:0)

正确的方法是将您的自定义drawable用于单选按钮的状态。要缩小自定义绘图的图像大小,请选中THIS

答案 4 :(得分:0)

访问此页面http://android-holo-colors.com/,选择Radio并下载输出资源(zip文件包含&#34; res&#34;文件夹),其中包含所有可用单选按钮状态的所有图像,用您的替换图像自定义,但保持下载文件的大小。如果您认为它有太多状态,只需从xml drawable主题中的选择器中删除。

enter image description here