单选按钮样式修改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是未选中样式;
相关推荐
悟空聊架构44 分钟前
从 0 到 1:Jenkins 对接企微机器人避坑指南(附可下载 Pipeline 模板)
后端·架构·github
HelloGitHub2 小时前
直击痛点的开源项目「GitHub 热点速览」
开源·github
超级小忍13 小时前
深入解析 GitHub Actions 工作流文件编写:从入门到实战
github
Haku Coder13 小时前
我的第一个音乐元素浏览项目上传至Github啦!
github
程序媛Dev16 小时前
还在 SSH 连服务器敲 SQL?我用 Sealos 把数据库管理后台搬进了浏览器!
开源·github
猫头虎18 小时前
猫头虎AI分享|一款Coze、Dify类开源AI应用超级智能体Agent快速构建工具:FastbuildAI
人工智能·开源·github·aigc·ai编程·ai写作·ai-native
Onion_9919 小时前
学习下Github上的Android CICD吧
android·github
CoderJia程序员甲1 天前
GitHub 热榜项目 - 日榜(2025-08-14)
ai·github·开源项目·github热榜
猫头虎1 天前
猫头虎AI分享|一款Coze、Dify类开源AI应用超级智能体快速构建工具:FastbuildAI
人工智能·开源·prompt·github·aigc·ai编程·ai-native
我是哪吒1 天前
分布式微服务系统架构第165集:阿里,字节,腾讯架构经验汇总
后端·面试·github