android radioButton 改变圆圈大小

此控件有时候显示感觉圆圈太小了

自带的属性只能设置文字大小,但是圆圈不改变

这里需要重新用两张图来代替,选中一个图片、未选中一个图片

如下效果:


新建一个样式文件checkimg.xml




     
   
   




红色部分调用:

                  android:id="@+id/inrbtnout"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/intypeout"
                android:textColor="@drawable/checkrbtn"
                android:button = "@drawable/checkimg"
                android:textSize="30dp" />

如果实际效果不理想可调整图片大小


你可能感兴趣的:(android)