单选按钮样式修改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是未选中样式;
相关推荐
Leinwin5 小时前
微软开源GitHub Copilot Chat,AI编程领域迎新突破
microsoft·github·copilot
回家吃月饼6 小时前
pycharm2018配置gitee操作
pycharm·gitee
草梅友仁9 小时前
草梅 Auth 与 AI 开发心得 | 2025 年第 27 周草梅周报
github·ai编程·视觉设计
wu_aceo12 小时前
将本地项目提交到Gitee
git·gitee·提交·本地提交·上传git
qianmoQ12 小时前
GitHub 趋势日报 (2025年07月02日)
github
A5资源网16 小时前
cloudflare配合github搭建免费开源影视LibreTV一个独享视频网站 详细教程
github
mortimer16 小时前
从零到一:构建一个 Chatterbox-TTS API 服务
开源·github·ai编程
真智AI17 小时前
利用 Claude Opus 4 自动化 GitHub 工作流:从安装到实战详解
运维·自动化·github
寻月隐君20 小时前
Rust 网络编程实战:用 Tokio 手写一个迷你 TCP 反向代理 (minginx)
后端·rust·github
喜欢吃豆21 小时前
快速手搓一个MCP服务指南(九): FastMCP 服务器组合技术:构建模块化AI应用的终极方案
服务器·人工智能·python·深度学习·大模型·github·fastmcp