安卓开发入门教程-UI控件_CheckBox
程序员文章站
2022-04-15 19:22:01
什么是CheckBoxCheckBox是用于显示复选框的UI控件.基础样例1.普通复选框效果图代码 2.设置字号效果图代码
什么是CheckBox
CheckBox是用于显示复选框的UI控件.
基础样例
1.普通复选框
效果图
代码
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="我是CheckBox" />
2.设置字号
效果图
代码
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="我是20号字体的CheckBox"
android:textSize="20sp" />
3.设置颜色
效果图
代码
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="我是红色的CheckBox"
android:textColor="#FF0000" />
4.设置加粗
效果图
代码
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="我是加粗的CheckBox"
android:textStyle="bold" />
5.设置选中
效果图
代码
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="我是被选中的CheckBox" />
基础样例完整源代码
https://gitee.com/cxyzy1/CheckBoxDemo
常用属性说明
属性名 | 用途 |
---|---|
android:layout_width | 设置控件宽度,可设置为:match_parent(和父控件一样),wrap_content(按照内容自动伸缩),设置固定值(如200dp) |
android:layout_height | 设置控件高度,可设置为:match_parent(和父控件一样),wrap_content(按照内容自动伸缩),设置固定值(如200dp) |
android:gravity | 控件内对齐方式 |
android:background | 设置背景,可以是色值(如#FF0000)或图片等 |
android:visibility | 可选值: visible(显示), invisible(隐藏,但是仍占据UI空间),gone(隐藏,且不占UI空间) |
android:text | 设置文本内容 |
android:textSize | 设置字号 |
android:textColor | 设置颜色 |
android:textStyle | 设置字体样式,可选值:normal(正常),bold(加粗),italic(斜体) |
android:checked | 是否选中,可选值:true(选中),false(未选中) |
更多属性及实际效果,可以在开发工具里自行体验.
安卓开发入门教程系列汇总
开发语言学习
UI控件学习系列
UI控件_TextView
UI控件_EditText
UI控件_Button
UI控件_ImageView
UI控件_RadioButton
UI控件_CheckBox
UI控件_ProgressBar
关注头条号,第一时间获取最新文章:
本文地址:https://blog.csdn.net/yinxing2008/article/details/107376877
推荐阅读
-
安卓开发笔记(十九):异步消息处理机制实现更新软件UI
-
python +uiautomator 安卓UI控件操作
-
安卓开发入门教程-UI控件_Button
-
学习安卓开发[5] - HTTP、后台任务以及与UI线程的交互
-
Android入门到精通|安卓/Android开发零基础系列Ⅱ【职坐标】-学习笔记(1)-- 常用控件及资源介绍
-
安卓开发Java代码控制UI界面的方法
-
安卓开发入门教程-UI控件_CheckBox
-
安卓开发学习笔记(五):史上最简单且华丽地实现Android Stutio当中Webview控件https/http协议的方法
-
安卓开发控件使用(DataBinding、ViewModel、LiveData、recyclerview)
-
记录安卓开发过程中 一些控件的使用方法