xml 切换单选按钮上的自定义背景状态
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 切换单选按钮上的自定义背景状态相关的知识,希望对你有一定的参考价值。
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true"> <!-- selected -->
<shape>
<solid android:color="@android:color/white" />
<stroke android:width="3px" android:color="@android:color/holo_blue_bright" />
<corners android:radius="5dp" />
</shape>
</item>
<item android:state_checked="false"> <!-- default -->
<shape>
<solid android:color="@android:color/black" />
<stroke android:width="1px" android:color="@android:color/darker_gray" />
<corners android:radius="5dp" />
</shape>
</item>
</selector>
<RadioGroup
android:orientation="horizontal"
android:id="@+id/radio_group"
android:layout_width="match_parent"
android:checkedButton="@+id/bt1"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/bt1"
android:background="@drawable/toggle_bg"
android:layout_weight="1"
android:text="Left"
android:textColor="@color/colorPrimary"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<RadioButton
android:id="@+id/bt2"
android:background="@drawable/toggle_bg"
android:layout_weight="1"
android:textColor="@color/colorPrimary"
android:text="right"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RadioGroup>
以上是关于xml 切换单选按钮上的自定义背景状态的主要内容,如果未能解决你的问题,请参考以下文章
在 TableView 的自定义单元格中添加单选按钮并且无法访问外部
为啥我的自定义按钮状态不起作用?
创建自定义单选按钮
单选按钮的自定义布局
Python tkinter Entry 小部件状态通过单选按钮切换
根据 WooCommerce 中的自定义结帐单选按钮和文本字段设置动态费用