单选按钮样式修改RadioButton

Android CheckBox修改大小、边框颜色,以及自定义CheckBox;_android checkbox动态添加设置方框颜色-CSDN博客

复制代码
<RadioGroup
	android:id="@+id/login_radio_group"
	android:layout_width="match_parent"
	android:layout_height="wrap_content"
	android:orientation="horizontal"
	app:layout_constraintLeft_toLeftOf="parent"
	app:layout_constraintRight_toRightOf="parent"
	app:layout_constraintTop_toTopOf="parent">

	<RadioButton
		android:id="@+id/login_rb_1"
		android:layout_width="0dp"
		android:layout_height="wrap_content"
		android:layout_weight="1"
		android:background="@drawable/login_rb_bg_sel"
		android:button="@null"
		android:checked="true"
		android:gravity="center"
		android:text="账号登录"
		android:textColor="@color/white" />

	<RadioButton
		android:id="@+id/login_rb_2"
		android:layout_width="0dp"
		android:layout_height="wrap_content"
		android:layout_weight="1"
		android:background="@drawable/login_rb_bg_sel"
		android:button="@null"
		android:gravity="center"
		android:text="刷卡登录"
		android:textColor="@color/white" />

	<RadioButton
		android:id="@+id/login_rb_3"
		android:layout_width="0dp"
		android:layout_height="wrap_content"
		android:layout_weight="1"
		android:background="@drawable/login_rb_bg_sel"
		android:button="@null"
		android:gravity="center"
		android:text="指纹登录"
		android:textColor="@color/white" />

	<RadioButton

		android:id="@+id/login_rb_4"
		android:layout_width="0dp"
		android:layout_height="wrap_content"
		android:layout_weight="1"
		android:background="@drawable/login_rb_bg_sel"
		android:button="@null"
		android:gravity="center"
		android:text="人脸登录"
		android:textColor="@color/white" />
</RadioGroup>
			
			
login_rb_bg_sel.xml
				
	<?xml version="1.0" encoding="utf-8"?>
	<selector xmlns:android="http://schemas.android.com/apk/res/android">
		<item android:drawable="@drawable/login_rb_bg_shape_unchecked" android:state_checked="false"></item>
		<item android:drawable="@drawable/login_rb_bg_shape_checked" android:state_checked="true"></item>
	</selector>
	
login_rb_bg_shape_unchecked.xml

	<?xml version="1.0" encoding="utf-8"?>
	<shape xmlns:android="http://schemas.android.com/apk/res/android"
		android:shape="rectangle">
		<!-- 填充 -->
		<solid android:color="@color/login_rb_un_sel" />
		<!-- 圆角 -->
		<!--    <corners android:radius="5dp" />-->
		<padding
			android:bottom="3dp"
			android:left="@dimen/dp_1"
			android:right="@dimen/dp_1"
			android:top="3dp" />
		<stroke
			android:width="1dp"
			android:color="#CCCCCC" />
	</shape>

login_rb_bg_shape_checked.xml

	<?xml version="1.0" encoding="utf-8"?>
	<shape xmlns:android="http://schemas.android.com/apk/res/android"
		android:shape="rectangle">
		<!-- 填充 -->
		<solid android:color="@color/login_rb_sel" />
		<!-- 圆角 -->
		<!--    <corners android:radius="5dp" />-->

		<padding
			android:bottom="3dp"
			android:left="@dimen/dp_1"
			android:right="@dimen/dp_1"
			android:top="3dp" />
		<stroke
			android:width="1dp"
			android:color="#CCCCCC" />
	</shape>
	
----------------------------------------------------------------------------------------------------
Android CheckBox修改大小、边框颜色,以及自定义CheckBox;

CheckBox修改大小:
	android:scaleX="0.8"
	android:scaleY="0.8"
CheckBox修改边框颜色,注意不是背景色:
	 android:buttonTint="@color/colorAccent"
修改大小和边框颜色:
	   <CheckBox
		android:layout_width="wrap_content"
		android:layout_height="match_parent"
		android:gravity="center_vertical"
		android:scaleX="0.8"
		android:scaleY="0.8"
		android:buttonTint="@color/colorAccent"
		/>
自定义CheckBox:
    <CheckBox
		android:id="@+id/spc_cb_shops"
		android:layout_width="wrap_content"
		android:layout_height="match_parent"
		android:paddingLeft="@dimen/side_distance"
		android:paddingRight="@dimen/side_distance"
		style="@style/spc_checkbox_style"
		/>
	
	<!--购物车checkbox-->
    <style name="spc_checkbox_style" parent="@android:style/Widget.CompoundButton.CheckBox">
        <item name="android:drawableLeft">@drawable/spc_cb</item>
        <item name="android:button">@null</item>
    </style>
	
	<?xml version="1.0" encoding="utf-8"?>
	<selector xmlns:android="http://schemas.android.com/apk/res/android">
		<item android:state_checked="true" android:drawable="@mipmap/select_button" />
		<item android:state_checked="false" android:drawable="@mipmap/select_button_gray" />
		<item android:drawable="@mipmap/select_button_gray" />
	</selector>

@mipmap/select_button是已选中样式,;
@mipmap/select_button_gray是未选中样式;
相关推荐
老马啸西风11 小时前
sensitive-word-admin v2.0.0 全新 ui 版本发布!vue+前后端分离
vue.js·ui·ai·nlp·github·word
是代码侠呀12 小时前
飞蛾扑火算法matlab实现
开发语言·算法·matlab·github·github star·github 加星
大龄牛码14 小时前
GitHub打开缓慢甚至失败的解决办法
github
柯ran19 小时前
JSON|cJSON 介绍以及具体项目编写
c语言·链表·json·github
正经教主19 小时前
【问题】Watt加速github访问速度:好用[特殊字符]
github·watt
wumu_Love19 小时前
git 报错:错误:RPC 失败。curl 28 Failed to connect to github.com port 443 after 75000
git·rpc·github
qianmoQ1 天前
GitHub 趋势日报 (2025年05月09日)
github
是代码侠呀2 天前
HTTP 的发展史:从前端视角看网络协议的演进
前端·网络协议·http·开源·github·github star·github 加星
jz_ddk2 天前
[学习]RTKLib详解:rtksvr.c与streamsvr.c
c语言·学习·github
是代码侠呀2 天前
让Promise飞,让github star 飞
python·开源·github·github star·github 加星