android 登录界面编写

devtools/2024/12/21 20:47:41/
1、登录页面实现内容

1.实现使用两个EditText输入框输入用户名和密码。

2.使用CheckBox控件记住密码功能。

3.登录时候,验证用户名和密码是否为空。

4.当前CheckBox控件记住密码勾上时,使用SharedPreferences存储用户名和密码。

5.登录时候使用ProgressDialog登录转圈圈2秒,两秒后显示登录成功。

6.默认用户名和密码admin和admin。当用户名和密码输入都是admin就提示登录成功。

2、登录页面布局实现
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/main"android:layout_width="match_parent"android:layout_height="match_parent"><TextViewandroid:id="@+id/tvTitle"style="@style/TextView"android:layout_width="match_parent"android:layout_height="80dp"android:layout_marginTop="20dp"android:gravity="center"android:text="登录"android:textSize="24sp"android:textStyle="bold"app:layout_constraintTop_toTopOf="parent" /><LinearLayoutandroid:id="@+id/layoutInput"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_margin="30dp"android:gravity="center"android:orientation="vertical"app:layout_constraintTop_toBottomOf="@id/tvTitle"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:gravity="center"><TextViewstyle="@style/TextView"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="@dimen/layout_left_distance"android:text="用户名:" /><EditTextandroid:id="@+id/editUser"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_marginRight="@dimen/layout_right_diatance"android:ems="10" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:gravity="center"><TextViewstyle="@style/TextView"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="@dimen/layout_left_distance"android:text="密   码:" /><EditTextandroid:id="@+id/editPsw"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_marginRight="@dimen/layout_right_diatance"android:ems="10"android:inputType="textPassword" /></LinearLayout></LinearLayout><LinearLayoutandroid:id="@+id/layoutCheck"android:layout_width="match_parent"android:layout_height="wrap_content"app:layout_constraintTop_toBottomOf="@id/layoutInput"android:gravity="center"><CheckBoxandroid:id="@+id/checkBoxRemember"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_marginLeft="80dp"android:text="记住密码" /></LinearLayout><Buttonandroid:id="@+id/buttonLogin"style="@style/button"android:layout_width="match_parent"android:layout_height="50dp"android:layout_marginLeft="50dp"android:layout_marginTop="20dp"android:layout_marginRight="50dp"android:text="登录"app:layout_constraintTop_toBottomOf="@id/layoutCheck"tools:ignore="MissingConstraints" />
</androidx.constraintlayout.widget.ConstraintLayout>
3、fragment实现登录界面
public class LoginFragment extends Fragment {private ProgressDialog progressDialog = null;private View rootView;private EditText editUser, editPsw;private CheckBox checkBoxRemember;public LoginFragment() {}@Overridepublic void onCreate(@Nullable Bundle savedInstanceState) {super.onCreate(savedInstanceState);}@Nullable@Overridepublic View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {rootView = inflater.inflate(R.layout.fragment_loglin, container, false);editUser = rootView.findViewById(R.id.editUser);editPsw = rootView.findViewById(R.id.editPsw);checkBoxRemember = rootView.findViewById(R.id.checkBoxRemember);SharedPreferences sp = getActivity().getSharedPreferences("mmsx", MODE_PRIVATE);editUser.setText(sp.getString("user",""));editPsw.setText(sp.getString("password",""));checkBoxRemember.setChecked(sp.getBoolean("remember",true));View buttonLogin =  rootView.findViewById(R.id.buttonLogin);buttonLogin.setOnClickListener(view -> {String user = editUser.getText().toString();String psw = editPsw.getText().toString();if (user.isEmpty()){Toast.makeText(getActivity(),"请输入用户名", Toast.LENGTH_LONG).show();return;}if (psw.isEmpty()){Toast.makeText(getActivity(),"请输入密码", Toast.LENGTH_LONG).show();return;}if (user.equalsIgnoreCase("admin") && psw.equalsIgnoreCase("admin")){SharedPreferences.Editor edit = Objects.requireNonNull(getActivity()).getSharedPreferences("mmsx", MODE_PRIVATE).edit();if (checkBoxRemember.isChecked()){edit.putString("user", "admin");edit.putString("password", "admin");}else {edit.putString("user", "");edit.putString("password", "");}edit.putBoolean("remember", checkBoxRemember.isChecked());edit.apply();progressDialog=new ProgressDialog(getActivity());progressDialog.setTitle("登录中");progressDialog.setMessage("登录中,请稍后...");progressDialog.setCancelable(true);progressDialog.show();//这里的话新建一个线程,重写run()方法,new Thread(){public void run(){SystemClock.sleep(2000);//把信息码发送给handle让更新界面handler.sendEmptyMessage(123);}}.start();}else {Toast.makeText(getActivity(),"用户名或者密码错误", Toast.LENGTH_LONG).show();}});return rootView;}@SuppressLint("HandlerLeak")Handler handler = new Handler() {@Overridepublic void handleMessage(Message msg) {if (msg.what == 123) {progressDialog.dismiss();Toast.makeText(getActivity(),"登录成功", Toast.LENGTH_LONG).show();}}};
}
4、实现成果


http://www.ppmy.cn/devtools/144174.html

相关文章

R语言混合模型回归GBTM群组轨迹模型绘图可视化研究

全文链接&#xff1a;https://tecdat.cn/?p38581 在回归分析的广袤领域中&#xff0c;面对具有多条未知函数线的复杂数据时&#xff0c;传统方法常常捉襟见肘。混合模型作为一种强有力的分析手段应运而生&#xff0c;其在处理此类复杂情境时展现出独特的优势与潜力&#xff08…

网安入门|前端基础之Html_css基础

Web1.0、Web2.0 和 Web3.0 是互联网发展的三个主要阶段&#xff0c;每个阶段有其独特的特征和技术进步。以下是对它们的介绍&#xff1a; Web 1.0&#xff08;静态互联网&#xff09; 时间&#xff1a;1990年代初到2000年代初 特点&#xff1a; 静态内容&#xff1a;网页主要…

Ajax简单理解

Ajax 1 什么是ajax AJAXAsynchronous JavaScript and XML (异步的JavaScript和XML)AJAX不是新的编程语言&#xff0c;二十一种使用现有标准的新方法 AJAX 最大的优点是在不重新加载整个页面的情况下&#xff0c;可以与服务器交换数据并更新部分网页内容。 AJAX 不需要任何浏…

CSS3新特性——字体图标、2D、3D变换、过渡、动画、多列布局

目录 一、Web字体 二、字体图标 三、2D变换 1.位移 &#xff08;1&#xff09;浮动 &#xff08;2&#xff09;相对定位 &#xff08;3)绝对定位和固定定位 &#xff08;4&#xff09;位移 用位移实现盒子的水平垂直居中 2.缩放 利用缩放调整字体到12px以下&#xff…

盲盒3.0版h5版-可打包app-新优化版紫色版

整体界面ui美观大气&#xff0c;盲盒项目也是一直比较热门的&#xff0c;各大平台一直自己也有做。 感兴趣的小伙伴可以搭建做自己的项目。盲盒项目的利润率还是很大的。

【第九节】Git 服务器搭建

目录 前言 一、 使用裸存储库搭建 Git 服务器 1.1 安装 Git 1.2 创建裸存储库 1.3 配置 SSH 访问 1.4 克隆仓库 二、 使用 GitLab 搭建 Git 服务器 2.1 安装 GitLab 2.2 配置 GitLab 2.3 创建项目 2.4 生成 SSH 密钥 2.5 添加 SSH Key 三、 使用 GitLab 管理项目 …

高云GW5AT系列FPGA在接口扩展和桥接领域的应用方向探讨分享

作者&#xff1a;Hello&#xff0c;Panda 大家早上好、中午好、下午好、晚上好&#xff0c;熊猫君有一阵子没有学习了&#xff0c;实在是不得闲&#xff0c;最近发生的事情真的挺多的。今天刷了一下国产Fpga的网站&#xff0c;发现高云新出的Arora V系列的GW5AT系列的FPGA在接…

【真人模型】Stable Diffusion:人脸特美的人像摄影大模型

大家好我是安琪&#xff01; AI绘画的出现&#xff0c;将会带来新一轮的历史变革&#xff0c;具有无限的能力和潜力。如同200年前摄影技术发明时的情景一样&#xff0c;我们再度面临“绘画是什么”这样的问题。 今天和大家分享一个基于SDXL的真人大模型&#xff1a;wuhaXL_re…