此控件有时候显示感觉圆圈太小了
自带的属性只能设置文字大小,但是圆圈不改变
这里需要重新用两张图来代替,选中一个图片、未选中一个图片
如下效果:
新建一个样式文件checkimg.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/check" android:state_checked="true" ></item>
<item android:drawable="@drawable/checkno" ></item>
</selector>
红色部分调用:
<RadioButton
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" />
如果实际效果不理想可调整图片大小