【Android】 self_introduce实现

2023-12-15 11:58
文章标签 实现 android self introduce

本文主要是介绍【Android】 self_introduce实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、测试截图

没有填完的异常处理!

二、关键代码

1、layout

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:id="@+id/linearlayout"android:layout_width="match_parent"android:layout_height="match_parent"android:background="#F0FFFF"android:orientation="vertical"><TextViewandroid:id="@+id/tv_1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center"android:text="个人信息"android:textSize="30dp"android:textStyle="bold" /><Viewandroid:layout_width="match_parent"android:layout_height="1px"android:background="#000000" /><LinearLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:id="@+id/tv_2"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="  姓   名:"android:textSize="20sp"android:textStyle="italic" /><EditTextandroid:id="@+id/edt_1"android:layout_width="150sp"android:layout_height="wrap_content" /></LinearLayout><LinearLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:id="@+id/tv_3"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="  性   别:"android:textSize="20sp"android:textStyle="italic" /><RadioGroupandroid:id="@+id/rg_1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="horizontal"><RadioButtonandroid:id="@+id/rb_1"android:layout_width="100dp"android:layout_height="wrap_content"android:text="男"android:textSize="18sp" /><RadioButtonandroid:id="@+id/rb_2"android:layout_width="100dp"android:layout_height="wrap_content"android:text="女"android:textSize="18sp" /></RadioGroup></LinearLayout><TextViewandroid:id="@+id/tv_4"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="  爱   好:"android:textSize="20sp"android:textStyle="italic" /><RelativeLayoutandroid:layout_width="wrap_content"android:layout_height="86dp"><CheckBoxandroid:id="@+id/chb_1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentStart="true"android:layout_alignParentLeft="true"android:layout_marginStart="77dp"android:layout_marginLeft="108dp"android:layout_marginTop="2dp"android:checked="false"android:text="音乐"android:textSize="18sp" /><CheckBoxandroid:id="@+id/chb_2"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_below="@+id/chb_1"android:layout_alignParentStart="true"android:layout_alignParentLeft="true"android:layout_marginStart="77dp"android:layout_marginLeft="108dp"android:layout_marginTop="10dp"android:text="游戏"android:textSize="18sp" /><CheckBoxandroid:id="@+id/chb_3"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignLeft="@+id/chb_4"android:layout_alignTop="@+id/chb_1"android:layout_marginLeft="-1dp"android:layout_marginTop="2dp"android:layout_marginRight="-77dp"android:text="旅游"android:textSize="18sp" /><CheckBoxandroid:id="@+id/chb_4"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_below="@+id/chb_3"android:layout_alignParentEnd="true"android:layout_alignParentRight="true"android:layout_marginTop="6dp"android:layout_marginEnd="100dp"android:layout_marginRight="167dp"android:text="电影"android:textSize="18sp" /></RelativeLayout><LinearLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:id="@+id/tv_5"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="  年   级:"android:textSize="20dp"android:textStyle="italic" /><Spinnerandroid:id="@+id/sp_1"android:layout_width="200dp"android:layout_height="match_parent"android:layout_gravity="center"android:entries="@array/nianji" /></LinearLayout><Buttonandroid:id="@+id/bt_1"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center"android:text="提交" /><TextViewandroid:id="@+id/tv_6"android:layout_width="match_parent"android:layout_height="150dp"android:text="  请填入信息!"android:textSize="20dp" /><Buttonandroid:id="@+id/bt_2"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_gravity="center"android:text="清除"android:textColor="#c20014"android:textSize="18sp" /></LinearLayout>

2、java

public class MainActivity extends AppCompatActivity implements CompoundButton.OnCheckedChangeListener {private TextView tv_2,tv_3,tv_4,tv_5,tv_6;private EditText edt_1;private Button bt_1,bt_2;private RadioButton rb_1,rb_2;private RadioGroup rg_1;private CheckBox chb_1,chb_2,chb_3,chb_4;Spinner sp_1;private String s_1;private String s_2;ArrayList<String> hobbies=new ArrayList<String>();@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);tv_2=findViewById(R.id.tv_2);edt_1=findViewById(R.id.edt_1);tv_6=findViewById(R.id.tv_6);bt_1=findViewById(R.id.bt_1);bt_2=findViewById(R.id.bt_2);rg_1=findViewById(R.id.rg_1);rb_1=findViewById(R.id.rb_1);rb_2=findViewById(R.id.rb_2);tv_3=findViewById(R.id.tv_3);tv_4=findViewById(R.id.tv_4);chb_1=findViewById(R.id.chb_1);chb_2=findViewById(R.id.chb_2);chb_3=findViewById(R.id.chb_3);chb_4=findViewById(R.id.chb_4);sp_1=findViewById(R.id.sp_1);tv_5=findViewById(R.id.tv_5);s_1="";s_2="";//单选组事件rg_1.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(RadioGroup radioGroup, int i) {if(i==rb_1.getId()){s_1=rb_1.getText().toString();}else if(i==rb_2.getId()){s_1=rb_2.getText().toString();}}});//提交按钮事件bt_1.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {String stv_6="";int flag=0;tv_6.setText("");//格式化内容//pd名字输入if(edt_1.length()!=0){stv_6=tv_2.getText().toString()+edt_1.getText().toString()+"\n";flag++;}else{tv_6.append("请输入姓名!!"+"\n");}//pd性别选择if(s_1!=""){stv_6+=tv_3.getText().toString()+s_1+"\n";flag++;}else{tv_6.append("请选择性别!!"+"\n");}//复选框if(hobbies.size()!=0){for(int i=0;i<hobbies.size();i++){if(i==hobbies.size()-1)s_2+=hobbies.get(i);elses_2+=hobbies.get(i)+"、";}stv_6+=tv_4.getText().toString()+s_2+"\n";flag++;}else{tv_6.append("请选择爱好!!"+"\n");}//spinnerif(sp_1.getSelectedItemPosition()!=0){stv_6+=tv_5.getText().toString()+sp_1.getSelectedItem().toString();flag++;}else {tv_6.append("请选择年级!!");}if(flag==4)tv_6.setText(stv_6);}});//清除按钮事件bt_2.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View view) {edt_1.setText("");tv_6.setText("");rg_1.clearCheck();s_1="";chb_1.setChecked(false);chb_2.setChecked(false);chb_3.setChecked(false);chb_4.setChecked(false);sp_1.setSelection(0);}});//复选框设置监听器chb_1.setOnCheckedChangeListener(this);chb_2.setOnCheckedChangeListener(this);chb_3.setOnCheckedChangeListener(this);chb_4.setOnCheckedChangeListener(this);}//接口类的Override@Overridepublic void onCheckedChanged(CompoundButton compoundButton, boolean b) {if(b){hobbies.add(compoundButton.getText().toString().trim());}else{hobbies.remove(compoundButton.getText().toString());}}
}

 

这篇关于【Android】 self_introduce实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/496359

相关文章

python生成随机唯一id的几种实现方法

《python生成随机唯一id的几种实现方法》在Python中生成随机唯一ID有多种方法,根据不同的需求场景可以选择最适合的方案,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习... 目录方法 1:使用 UUID 模块(推荐)方法 2:使用 Secrets 模块(安全敏感场景)方法

Spring StateMachine实现状态机使用示例详解

《SpringStateMachine实现状态机使用示例详解》本文介绍SpringStateMachine实现状态机的步骤,包括依赖导入、枚举定义、状态转移规则配置、上下文管理及服务调用示例,重点解... 目录什么是状态机使用示例什么是状态机状态机是计算机科学中的​​核心建模工具​​,用于描述对象在其生命

Spring Boot 结合 WxJava 实现文章上传微信公众号草稿箱与群发

《SpringBoot结合WxJava实现文章上传微信公众号草稿箱与群发》本文将详细介绍如何使用SpringBoot框架结合WxJava开发工具包,实现文章上传到微信公众号草稿箱以及群发功能,... 目录一、项目环境准备1.1 开发环境1.2 微信公众号准备二、Spring Boot 项目搭建2.1 创建

IntelliJ IDEA2025创建SpringBoot项目的实现步骤

《IntelliJIDEA2025创建SpringBoot项目的实现步骤》本文主要介绍了IntelliJIDEA2025创建SpringBoot项目的实现步骤,文中通过示例代码介绍的非常详细,对大家... 目录一、创建 Spring Boot 项目1. 新建项目2. 基础配置3. 选择依赖4. 生成项目5.

Linux下删除乱码文件和目录的实现方式

《Linux下删除乱码文件和目录的实现方式》:本文主要介绍Linux下删除乱码文件和目录的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux下删除乱码文件和目录方法1方法2总结Linux下删除乱码文件和目录方法1使用ls -i命令找到文件或目录

SpringBoot+EasyExcel实现自定义复杂样式导入导出

《SpringBoot+EasyExcel实现自定义复杂样式导入导出》这篇文章主要为大家详细介绍了SpringBoot如何结果EasyExcel实现自定义复杂样式导入导出功能,文中的示例代码讲解详细,... 目录安装处理自定义导出复杂场景1、列不固定,动态列2、动态下拉3、自定义锁定行/列,添加密码4、合并

mybatis执行insert返回id实现详解

《mybatis执行insert返回id实现详解》MyBatis插入操作默认返回受影响行数,需通过useGeneratedKeys+keyProperty或selectKey获取主键ID,确保主键为自... 目录 两种方式获取自增 ID:1. ​​useGeneratedKeys+keyProperty(推

Spring Boot集成Druid实现数据源管理与监控的详细步骤

《SpringBoot集成Druid实现数据源管理与监控的详细步骤》本文介绍如何在SpringBoot项目中集成Druid数据库连接池,包括环境搭建、Maven依赖配置、SpringBoot配置文件... 目录1. 引言1.1 环境准备1.2 Druid介绍2. 配置Druid连接池3. 查看Druid监控

Linux在线解压jar包的实现方式

《Linux在线解压jar包的实现方式》:本文主要介绍Linux在线解压jar包的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux在线解压jar包解压 jar包的步骤总结Linux在线解压jar包在 Centos 中解压 jar 包可以使用 u

Android kotlin中 Channel 和 Flow 的区别和选择使用场景分析

《Androidkotlin中Channel和Flow的区别和选择使用场景分析》Kotlin协程中,Flow是冷数据流,按需触发,适合响应式数据处理;Channel是热数据流,持续发送,支持... 目录一、基本概念界定FlowChannel二、核心特性对比数据生产触发条件生产与消费的关系背压处理机制生命周期