Android登录界面的注册功能实现

注册一个登录界面在控制台将输入的信息文本选框展示出来

xml界面设计(前面已发)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity"android:orientation="vertical"><TextViewandroid:layout_width="match_parent"android:layout_height="wrap_content"android:text="注册"android:textSize="35sp"android:gravity="center"android:background="#FF5722"/>
<LinearLayoutandroid:layout_width="wrap_content"android:layout_height="210dp"android:orientation="horizontal"><Buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:background="@drawable/qq"android:layout_weight="1"android:text="用QQ注册"android:gravity="center"android:textSize="20sp"/><Buttonandroid:layout_width="wrap_content"android:layout_height="210dp"android:background="@drawable/wechat"android:layout_weight="1"android:text="用微信注册"android:textSize="20sp"/>
</LinearLayout><LinearLayoutandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:orientation="horizontal"><ImageViewandroid:id="@+id/yxlg"android:layout_marginTop="12dp"android:layout_marginLeft="80dp"android:layout_width="30dp"android:layout_height="30dp"android:background="@drawable/net"/><TextViewandroid:paddingTop="5dp"android:paddingBottom="5dp"android:id="@+id/yxld"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="   用邮箱登录"android:gravity="center"android:textSize="35sp"/></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/colorAccent"></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:paddingTop="12dp"android:layout_width="wrap_content"android:layout_height="60dp"android:text="名字:"android:gravity="left"android:textSize="25sp"/><EditTextandroid:id="@+id/mz"android:paddingTop="12dp"android:background="@null"android:layout_width="match_parent"android:layout_height="wrap_content"android:textSize="30sp"/></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/colorAccent">
</LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:paddingTop="12dp"android:layout_width="wrap_content"android:layout_height="60dp"android:text="账号:"android:gravity="left"android:textSize="25sp"/><EditTextandroid:id="@+id/zh"android:paddingTop="12dp"android:background="@null"android:layout_width="match_parent"android:layout_height="wrap_content"android:textSize="30sp"/></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/colorAccent"></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:paddingTop="12dp"android:layout_width="wrap_content"android:layout_height="60dp"android:text="密码:"android:gravity="left"android:textSize="25sp"/><EditTextandroid:password="true"android:id="@+id/mm"android:paddingTop="12dp"android:background="@null"android:layout_width="match_parent"android:layout_height="wrap_content"android:textSize="30sp"/></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/colorAccent"></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:paddingTop="12dp"android:layout_width="wrap_content"android:layout_height="60dp"android:text="性别:        "android:gravity="left"android:textSize="25sp"/><RadioGroupandroid:id="@+id/xb"android:layout_marginTop="15dp"android:orientation="horizontal"android:layout_width="wrap_content"android:layout_height="wrap_content"><RadioButtonandroid:id="@+id/nan"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="男"android:textSize="20sp"/>
<RadioButtonandroid:id="@+id/nu"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="女"android:textSize="20sp"/></RadioGroup></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/colorAccent"></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:paddingTop="12dp"android:layout_width="wrap_content"android:layout_height="60dp"android:text="选择你的爱好:"android:gravity="left"android:textSize="25sp"/><CheckBoxandroid:id="@+id/cg"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="唱歌"android:textSize="20sp" /><CheckBoxandroid:id="@+id/tw"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="跳舞"android:textSize="20sp" /><CheckBoxandroid:id="@+id/ds"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="读书"android:textSize="20sp" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/colorAccent"></LinearLayout><Buttonandroid:id="@+id/btn1"android:layout_width="match_parent"android:layout_height="100dp"android:text="提交"android:textSize="30sp"/>
</LinearLayout>

 

注册功能实现

package com.example.registerlogin;import androidx.appcompat.app.AppCompatActivity;import android.os.Bundle;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.EditText;
import android.widget.RadioGroup;
import android.widget.Toast;public class MainActivity extends AppCompatActivity implements View.OnClickListener,CompoundButton.OnCheckedChangeListener{
private EditText mz,zh,mm;
private Button btn1;
private String name,id,pwd,sex,hobby;
private RadioGroup xb;
private CheckBox cg,tw,ds;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);btn1=findViewById(R.id.btn1);mz=findViewById(R.id.mz);zh=findViewById(R.id.mz);mm=findViewById(R.id.mz);cg=findViewById(R.id.cg);tw=findViewById(R.id.tw);ds=findViewById(R.id.ds);xb=findViewById(R.id.xb);btn1.setOnClickListener(MainActivity.this);xb.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {@Overridepublic void onCheckedChanged(RadioGroup radioGroup, int checkedId) {{switch (checkedId){case R.id.nan:sex = "男";break;case R.id.nu:sex="女";break;}}}});}private void getData(){name=mz.getText().toString().trim();id=zh.getText().toString().trim();pwd=mm.getText().toString().trim();}public void onClick(View v) {switch (v.getId()) {case R.id.btn1:getData();if (TextUtils.isEmpty(name)) {Toast.makeText(MainActivity.this, "请输入名字", Toast.LENGTH_SHORT).show();} else if (TextUtils.isEmpty(id)) {Toast.makeText(MainActivity.this, "请输入账号", Toast.LENGTH_SHORT).show();} else if (TextUtils.isEmpty(pwd)) {Toast.makeText(MainActivity.this, "请输入密码", Toast.LENGTH_SHORT).show();} else if (TextUtils.isEmpty(sex)) {Toast.makeText(MainActivity.this, "请输入性别", Toast.LENGTH_SHORT).show();}else if (TextUtils.isEmpty(hobby)) {Toast.makeText(MainActivity.this, "请输入爱好", Toast.LENGTH_SHORT).show();}else {Toast.makeText(MainActivity.this, "注册成功", Log.i("MainActivity", "检测到你的注册信息:" + "名字:" + name + "  邮箱:" + id + "  性别:" + sex+"  爱好:"+hobby));}break;}}public void onCheckedChanged(CompoundButton buttonView,boolean isChecked){String motion =buttonView.getText().toString();if(isChecked){if(!hobby.contains(motion)){hobby = hobby + motion;}}else {if(hobby.contains(motion)){hobby=hobby.replace(motion,"");}}
}}

我没有输入爱好,所以控制台输出null

 这个代码较简单,xml用到的都是一些简单的线性布局,和一些对控件位置和id的改动,定义,Java文件用的是对xml控件的获取和输出,展示!如果有不明白的请留言,看到会第一时间回复的哦。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/41994.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

安卓注册登录界面示例

AndroidManifest.xml <?xml version"1.0" encoding"utf-8"?> <manifest xmlns:android"http://schemas.android.com/apk/res/android"package"online.geekgalaxy.layoutlearn"><applicationandroid:allowBackup"…

前2周还很火的ChatGPT,怎么突然就哑火了?

ChatGPT从去年才展露头角&#xff0c;但微软和谷歌的AI大战让ChatGPT在今年2月初突然就火出圈&#xff0c;国内不少大公司也紧急官宣“我们也有这项技术” ▶ 腾讯&#xff1a;在相关方向上已有布局&#xff0c;专项研究也在有序推进&#xff1b; ▶ 华为&#xff1a;在与Chat…

零代码量化投资:用ChatGPT通过tushare获取上市公司信息

Tushare是一个免费开源的金融数据集&#xff0c;包含股票、基金、期货、债券、外汇、行业大数据&#xff0c;同时包括了数字货币行情等区块链数据的全数据品类。 要使用tushare&#xff0c;首选注册一个账号&#xff0c;注册地址&#xff1a;https://tushare.pro/register?reg…

Qt 可视化Ui设计

QMainWindow 是主窗口类&#xff0c;主窗口类具有主菜单栏、工具栏和状态栏&#xff0c;类似于一般的应用程序的主窗口&#xff1b; QWidget是所有具有可视界面类的基类&#xff0c;选择QWidget创建的界面对各种界面组件都可以支持&#xff1b; QDialog是对话框类&#xff0c;可…

这么可爱的彩虹屁老婆,真的不想“娶”一个放桌面上吗?

&#x1f4a7;这么可爱的 彩 虹 屁 老 婆 \color{#FF1493}{彩虹屁老婆} 彩虹屁老婆&#xff0c;真的不想“娶”一个放桌面上吗&#xff1f;&#x1f4a7; &#x1f337; 仰望天空&#xff0c;妳我亦是行人.✨ &#x1f984; 个人主页——微风撞见云的博客&#x1f39…

Python中Oracle的连接、增删改查

1、下载格式为whl的cx_Oracle文件 文件名&#xff1a;cx_Oracle‑7.3.0‑cp37‑cp37m‑win_amd64.whl 注意对应cp版本&#xff08;python版本&#xff09; 下载地址&#xff1a;https://www.lfd.uci.edu/~gohlke/pythonlibs/#cx_oracle 下载到 D:\software 安装步骤&#…

美因基因冲刺港交所:黄金赛道的“双冠王”

2月18日&#xff0c;中国最大、全球前三的消费级基因检测平台美因基因向港交所递交了IPO申请&#xff0c;拟赴港上市&#xff0c;中信建投国际担任独家保荐人。 据美因基因招股说明书显示&#xff0c;此次IPO募集资金用于&#xff1a;&#xff08;1&#xff09;消费级基因检测及…

申宝优配-强者恒强还将继续

周二的行情与预期的保持一致&#xff0c;在日线的修整时间继续延续&#xff0c;同时&#xff0c;连续几天的休整以后&#xff0c;短线指标已经到达了相对的超跌低位&#xff0c;指数也到达了下方强支撑的3586点的边缘.。早盘指数小幅度低开以后快速拉起如期的开始进入反抽行情&…

乡村振兴开发合作联盟成立新闻发布会暨揭牌仪式成功举办

2022年3月18日&#xff0c;乡村振兴开发合作联盟成立新闻发布会暨揭牌仪式在纵横华媒国际总部成功举办。联盟主要负责人、纵横华媒国际董事长马康华&#xff0c;纵横华媒国际副总裁徐凡十、马卢健等领导出席会议并讲话。 本场发布会因疫情防控需要&#xff0c;采取线下线上相结…

申宝公司-市场两级分化谨慎操作

周一A股三大指数集体低开&#xff0c;早盘市场小幅反弹后便开启震荡下挫行情&#xff0c;沪指跌近1%&#xff0c;创业板指跌逾2%&#xff1b;午后A股跌幅继续杀跌&#xff0c;沪指失守3600点&#xff0c;创业板指一度重挫逾3%。沪深两市连续第42个交易日突破万亿规模&#xff1…

2月15日市场游资操作情况以及龙虎榜

2月15日市场知名游资操作以及机构龙虎榜&#xff1a; 1、章盟主 卖出&#xff1a;凯撒旅业 2、赵老哥 买入&#xff1a;天禾股份 卖出&#xff1a;曲江文旅、恒宝股份、泰慕士 3、量化打板 买入&#xff1a;园林股份、全筑股份、诚达药业、杭州园林、康芝药业、瑞鹄模具、浙…

Scrapy框架+Gerapy分布式爬取海外网文章

Scrapy框架Gerapy分布式爬取海外网文章 前言一、Scrapy和Gerapy是什么&#xff1f;1.Scrapy概述2.Scrapy五大基本构成:3.建立爬虫项目整体架构图4.Gerapy概述5.Gerapy用途 二、搭建Scrapy框架1.下载安装Scrapy环境2.建立爬虫项目3.配置Scrapy框架&#xff08;1&#xff09;item…

区块链媒体套餐到底怎么样用

如今无论是哪行哪业&#xff0c;互联网技术永远都是尤为重要的一个专用工具。不论是公司还是其他想要做宣传策划&#xff0c;那就需要通过网络这一媒体去进行&#xff0c;不过随着移动互联网的迅速普及化&#xff0c;区块链媒体也慢慢地进入大家的视野&#xff0c;那样区块链媒…

手把手教你用量化做复盘(一)

股市复盘是交易中的重要组成部分&#xff0c;能够帮助交易者更好地了解股市变化&#xff0c;把握未来趋势。 但有时候复盘工作量较大&#xff0c;往往花费大量的时间精力&#xff0c;为帮助掘金用户更好、更快地完成复盘工作&#xff0c;特此推出系列内容&#xff1a;《手把手教…

商业演出站口这类宣传模式适宜中小型企业吗

不一样类型的公司在宣传过程中适宜应用不一样类型的宣传模式&#xff0c;比如有许多知名企业都会采用商业演出站口这类宣传模式&#xff0c;这种类型的宣传模式适合不适合中小型企业呢&#xff1f;此类类型的宣传模式针对中小型企业来讲不太适合应用。 为何商业演出站口这样的方…

绿虫数字藏品一站式服务的运营平台解决方案

受“元宇宙”概念影响&#xff0c;数字藏品正在世界各国掀起一股热潮。 数据显示&#xff0c;在刚刚过去的“国际博物馆日”&#xff0c;国内外十家博物馆、图书馆推出20款数字藏品&#xff0c;总量达2.5万件&#xff1b;同一天&#xff0c;广东多家博物馆陆续在不同平台上线2…

基金牌照在公司宣传中具有的功效怎么样

能够看见这样的情况&#xff0c;有很多企业在宣传过程中关注与展现自身的实力&#xff0c;那在宣传过程中&#xff0c;将股票基金牌照呈现出来具有的功效是不是非常大呢&#xff1f;这一点需看公司在宣传过程里的宣传目地怎样&#xff0c;依据宣传目的不一样股票基金牌照&#…

第二证券|扶持政策频发,教育板块再度爆发,全通教育“20cm”涨停

职业教育概念23日盘中再度活跃&#xff0c;截至发稿&#xff0c;全通教育“20cm”涨停&#xff0c;该股昨日大涨14.4%&#xff0c;盘中一度涨停&#xff1b;世纪鼎利涨超16%&#xff0c;天舟文化、中文在线涨超10%&#xff0c;华媒控股、邦本科技、明牌珠宝、中广天择、陕西金叶…

2022年网络我的网络爬虫学习心得

2022年网络我的网络爬虫学习心得 写在前面一、心得二、爬虫项目中所需要的pip模块1.requests2.bs43.Pandas4.selenium5.Scrapy6.gerapy_auto_extractor 三、简单爬虫实现1.配置环境2.简单爬虫实现&#xff08;mysql&#xff09;3.简单爬虫实现&#xff08;mongo&#xff09; 四…

星际无限CTO张超受邀参加2020区块链技术和应用峰会

7月31日上午&#xff0c;区块链技术和峰会暨第四届中国区块链开发大赛成果发布会在杭州国际博览中心正式召开。 大会由中国电子技术标准化研究院和杭州市萧山区人民政府主办&#xff0c;中国区块链技术和产业发展论坛、杭州日报报业集团&#xff08;华媒控股&#xff09;、钱江…