RadioButton自定义图片
RadioGroup extends LinearLayout
<RadioGroup
android:layout_width="match_parent"
android:layout_height="80dp"
android:orientation="horizontal"
>
<RadioButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"去掉原始按钮
android:drawableTop="@drawable/selector_1"自定义图片
android:text="A"
android:gravity="center"/>
<RadioButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:button="@null"去掉原生按钮
android:drawableTop="@drawable/selector_two"自定义选择器
android:text="B"
android:gravity="center"/>
</RadioGroup>
1584077756515.png
QQ群172660439
网友评论