CheckBox、RadioButton与EditText的使用
wptr33 2024-11-14 19:22 16 浏览
一、各自的功能以及使用场景
CheckBox:复选框,有两种状态,选中和未选中,一般情况下是单独出现,表示给定标题的是与非,最常见的场景就是登录界面的用户协议;
RadioButton:单选按钮,也是有选中和未选中两种状态,但它是多个一起出现,最常见的是它与RadioGroup配套使用,用于多选一的情况;
EditText:编辑框,用于文本输入,使用场景很多,例如:登录界面的用户名和密码的输入、聊天界面的输入框、浏览器或者其他地方的搜索框等
二、添加控件到布局
1、打开之前创建好的项目,打开activity_main.xml文件,然后添加上述控件,如图1
2、出于个人使用习惯,我把之前创建的按钮放在了最后面,为了方便截图,我把RadioGroup折叠起来了,其内容如下
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/rb01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="选项一"/>
<RadioButton
android:id="@+id/rb02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="选项二"/>
<RadioButton
android:id="@+id/rb03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="选项三"/>
</RadioGroup>
三、绑定控件
1、打开MainActivity.java,先对代码做如下调整,即定义和绑定控件
public class MainActivity extends AppCompatActivity {
private TextView tvText;
private Button btnChange;
//2022-09-04添加代码
private CheckBox cbAgreement;
private RadioButton rbItem1;
private RadioButton rbItem2;
private EditText etContent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
setListener();
}
private void setListener() {
btnChange.setOnClickListener((v)->{
tvText.setText("我是点击后的文本");
});
}
private void initView() {
tvText=findViewById(R.id.tv_text);
btnChange=findViewById(R.id.btn_change);
//2022-09-04添加代码
cbAgreement=findViewById(R.id.cb_agreement);
rbItem1=findViewById(R.id.rb01);
rbItem2=findViewById(R.id.rb02);
etContent=findViewById(R.id.et_content);
}
}
2、调整按钮的点击事件,获取各个控件的取值
btnChange.setOnClickListener((v)->{
if (!cbAgreement.isChecked()){
Toast.makeText(this,"同意协议才能继续喔~",Toast.LENGTH_SHORT).show();
return;
}
String str=etContent.getText().toString();
String selectStr="选项三";
if (rbItem1.isChecked()){
selectStr="选项一";
}else if (rbItem2.isChecked()){
selectStr="选项二";
}
tvText.setText("您的选择是:"+selectStr+",您输入了以下内容:"+str);
});
四、EditText支持的方法
因为EditText在日常使用还是蛮多的,这里贴出官网提供的其它方法
Public methods | |
void | extendSelection(int index) Convenience for Selection#extendSelection. |
CharSequence | getAccessibilityClassName() Return the class name of this object to be used for accessibility purposes. |
boolean | getFreezesText() Return whether this text view is including its entire text contents in frozen icicles. |
Editable | getText() Return the text that TextView is displaying. |
void | selectAll() Convenience for Selection#selectAll. |
void | setEllipsize(TextUtils.TruncateAt ellipsis) Causes words in the text that are longer than the view's width to be ellipsized instead of broken in the middle. |
void | setSelection(int start, int stop) Convenience for Selection#setSelection(Spannable, int, int). |
void | setSelection(int index) Convenience for Selection#setSelection(Spannable, int). |
void | setText(CharSequence text, TextView.BufferType type) Sets the text to be displayed and the TextView.BufferType. |
五、补充知识
1、双斜线“//”表示单行注释,编译器不会执行,一般用于开发者对自己代码的补充说明或修改记录;
2、可以看到无论是单选按钮还是复选框,我都用到了“isChecked()”方法,它就是用于判断当前控件是否选中;
3、Toast的使用,Toast.makeText(上下文,文本内容,显示长短).show();
4、遇到"return"关键字,后面的代码不再执行
相关推荐
- 【推荐】一款开源免费、美观实用的后台管理系统模版
-
如果您对源码&技术感兴趣,请点赞+收藏+转发+关注,大家的支持是我分享最大的动力!!!项目介绍...
- Android架构组件-App架构指南,你还不收藏嘛
-
本指南适用于那些已经拥有开发Android应用基础知识的开发人员,现在想了解能够开发出更加健壮、优质的应用程序架构。首先需要说明的是:AndroidArchitectureComponents翻...
- 高德地图经纬度坐标批量拾取(高德地图批量查询经纬度)
-
使用方法在桌面上新建一个index.txt文件,把下面的代码复制进去保存,再把文件名改成index.html保存,双击运行打开即可...
- flutter系列之:UI layout简介(flutter ui设计)
-
简介对于一个前端框架来说,除了各个组件之外,最重要的就是将这些组件进行连接的布局了。布局的英文名叫做layout,就是用来描述如何将组件进行摆放的一个约束。...
- Android开发基础入门(一):UI与基础控件
-
Android基础入门前言:...
- iOS的布局体系-流式布局MyFlowLayout
-
iOS布局体系的概览在我的CSDN博客中的几篇文章分别介绍MyLayout布局体系中的视图从一个方向依次排列的线性布局(MyLinearLayout)、视图层叠且停靠于父布局视图某个位置的框架布局(M...
- TDesign企业级开源设计系统越发成熟稳定,支持 Vue3 / 小程序
-
TDesing发展越来越好了,出了好几套组件库,很成熟稳定了,新项目完全可以考虑使用。...
- WinForm实现窗体自适应缩放(winform窗口缩放)
-
众所周知,...
- winform项目——仿QQ即时通讯程序03:搭建登录界面
-
上两篇文章已经对CIM仿QQ即时通讯项目进行了需求分析和数据库设计。winform项目——仿QQ即时通讯程序01:原理及项目分析...
- App自动化测试|原生app元素定位方法
-
元素定位方法介绍及应用Appium方法定位原生app元素...
- 61.C# TableLayoutPanel控件(c# tabcontrol)
-
摘要TableLayoutPanel在网格中排列内容,提供类似于HTML元素的功能。TableLayoutPanel控件允许你将控件放在网格布局中,而无需精确指定每个控件的位置。其单元格...
- 12个python数据处理常用内置函数(python 的内置函数)
-
在python数据分析中,经常需要对字符串进行各种处理,例如拼接字符串、检索字符串等。下面我将对python中常用的内置字符串操作函数进行介绍。1.计算字符串的长度-len()函数str1='我爱py...
- 如何用Python程序将几十个PDF文件合并成一个PDF?其实只要这四步
-
假定你有一个很无聊的任务,需要将几十个PDF文件合并成一个PDF文件。每一个文件都有一个封面作为第一页,但你不希望合并后的文件中重复出现这些封面。即使有许多免费的程序可以合并PDF,很多也只是简单的将...
- Python入门知识点总结,Python三大数据类型、数据结构、控制流
-
Python基础的重要性不言而喻,是每一个入门Python学习者所必备的知识点,作为Python入门,这部分知识点显得很庞杂,内容分支很多,大部分同学在刚刚学习时一头雾水。...
- 一周热门
-
-
C# 13 和 .NET 9 全知道 :13 使用 ASP.NET Core 构建网站 (1)
-
因果推断Matching方式实现代码 因果推断模型
-
面试官:git pull是哪两个指令的组合?
-
git pull命令使用实例 git pull--rebase
-
git 执行pull错误如何撤销 git pull fail
-
git pull 和git fetch 命令分别有什么作用?二者有什么区别?
-
git fetch 和git pull 的异同 git中fetch和pull的区别
-
git pull 之后本地代码被覆盖 解决方案
-
还可以这样玩?Git基本原理及各种骚操作,涨知识了
-
git命令之pull git.pull
-
- 最近发表
- 标签列表
-
- git pull (33)
- git fetch (35)
- mysql insert (35)
- mysql distinct (37)
- concat_ws (36)
- java continue (36)
- jenkins官网 (37)
- mysql 子查询 (37)
- python元组 (33)
- mysql max (33)
- vba instr (33)
- mybatis 分页 (35)
- vba split (37)
- redis watch (34)
- python list sort (37)
- nvarchar2 (34)
- mysql not null (36)
- hmset (35)
- python telnet (35)
- python readlines() 方法 (36)
- munmap (35)
- docker network create (35)
- redis 集合 (37)
- python sftp (37)
- setpriority (34)