Android制作登录页面并且记住账号密码功能的实现代码

 更新时间:2020年04月11日 10:02:02   作者:大亮  
这篇文章主要介绍了Android制作登录页面并且记住账号密码功能的实现代码,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

一、页面搭建

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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:layout_width="match_parent"
  android:layout_height="match_parent">
  <EditText
    android:id="@+id/et_UserName"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginLeft="16dp"
    android:layout_marginTop="32dp"
    android:layout_marginEnd="16dp"
    android:layout_marginRight="16dp"
    android:ems="10"
    android:hint="请输入账号"
    android:inputType="textPersonName"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />
  <EditText
    android:id="@+id/et_Password"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginStart="16dp"
    android:layout_marginLeft="16dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="16dp"
    android:layout_marginRight="16dp"
    android:ems="10"
    android:hint="请输入密码"
    android:inputType="textPassword"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/et_UserName" />
  <CheckBox
    android:id="@+id/checkBox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="16dp"
    android:text="记住密码"
    app:layout_constraintStart_toStartOf="@+id/et_Password"
    app:layout_constraintTop_toBottomOf="@+id/et_Password" />
  <Button
    android:id="@+id/button"
    android:onClick="Login"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginStart="24dp"
    android:layout_marginLeft="24dp"
    android:layout_marginEnd="24dp"
    android:layout_marginRight="24dp"
    android:text="安全登录"
    app:layout_constraintBottom_toBottomOf="@+id/checkBox"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toEndOf="@+id/checkBox"
    app:layout_constraintTop_toTopOf="@+id/checkBox" />
</android.support.constraint.ConstraintLayout>

二、代码实现

package com.hiscene.test;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
public class MainActivity extends AppCompatActivity {
  EditText et_userName;
  EditText et_password;
  CheckBox checkBox;
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.login_layout);
    et_userName = findViewById(R.id.et_UserName);
    et_password = findViewById(R.id.et_Password);
    checkBox = findViewById(R.id.checkBox);
    LoadInfo();
  }
  private void LoadInfo()
  {
    File file=new File("data/data/com.hiscene.test/usre.txt");
    if (!file.exists()) return;
    try {
      FileReader reader = new FileReader(file);
      BufferedReader br=new BufferedReader(reader);
      String text=br.readLine();
      String[] arr=text.split("#");
      et_userName.setText(arr[0]);
      et_password.setText(arr[1]);
      checkBox.setChecked(true);
      br.close();
    }catch (Exception e) {
      e.printStackTrace();
    }
  }
  public void Login(View view) {
    String userName=et_userName.getText().toString().trim();
    String password= et_password.getText().toString().trim();
    if (TextUtils.isEmpty(userName)|| TextUtils.isEmpty(password))
    {
      Toast.makeText(MainActivity.this, "用户名或密码不能为空!", Toast.LENGTH_SHORT).show();
      return;
    }
    if (checkBox.isChecked())
    {
      File file=new File("data/data/com.hiscene.test/usre.txt");
      try {
        OutputStream out=new FileOutputStream(file);
        OutputStreamWriter osw=new OutputStreamWriter(out,"UTF-8");
        BufferedWriter writer=new BufferedWriter(osw);
        writer.write(userName+"#"+password);
        writer.flush();
        writer.close();
      } catch (Exception e) {
        e.printStackTrace();
      }
    }
  }
}

总结

到此这篇关于Android制作登录页面并且记住账号密码功能的实现代码的文章就介绍到这了,更多相关android 登录页面记住密码内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • android中okhttp实现断点上传示例

    android中okhttp实现断点上传示例

    本篇文章主要介绍了android中okhttp实现断点上传示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-02-02
  • Android中给fragment写入参数的轻量开发包FragmentArgs简介

    Android中给fragment写入参数的轻量开发包FragmentArgs简介

    这篇文章主要介绍了Android中给fragment写入参数的轻量开发包FragmentArgs简介,需要的朋友可以参考下
    2014-10-10
  • Android利用ScaleTransition实现吹气球动画

    Android利用ScaleTransition实现吹气球动画

    这篇文章主要为大家介绍了如何将利用ScaleTransition实现一个吹气球的动画,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起了解一下
    2022-04-04
  • Android自定义View圆形百分比控件(一)

    Android自定义View圆形百分比控件(一)

    这篇文章主要为大家详细介绍了Android自定义View圆形百分比控件的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-03-03
  • Android studio 3.0 查看手机文件系统的方法(超简单)

    Android studio 3.0 查看手机文件系统的方法(超简单)

    本文给大家分享Android studio更新到3.0版本之后,查看手机文件系统的方法,需要的朋友参考下吧
    2017-11-11
  • Android自定义柱状图表的方法实例

    Android自定义柱状图表的方法实例

    柱状图是我们在日常开发中经常会用到的一种图表,下面这篇文章主要给大家介绍了关于Android如何自定义柱状图表的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面来一起看看吧
    2018-05-05
  • Android使用socket创建简单TCP连接的方法

    Android使用socket创建简单TCP连接的方法

    这篇文章主要介绍了Android使用socket创建简单TCP连接的方法,结合实例形式详细分析了Android使用socket创建TCP连接的具体步骤与实现技巧,需要的朋友可以参考下
    2016-04-04
  • Flutter之自定义Dialog实现版本更新弹窗功能的实现

    Flutter之自定义Dialog实现版本更新弹窗功能的实现

    这篇文章主要介绍了Flutter之自定义Dialog实现版本更新弹窗功能的实现,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-07-07
  • Android中使用GridLayout网格布局来制作简单的计算器App

    Android中使用GridLayout网格布局来制作简单的计算器App

    这篇文章主要介绍了Android中使用GridLayout网格布局来制作简单的计算器App的实例,GridLayout比表格布局TabelLayout更容易用来制作计算器这样的多按钮排列的界面,需要的朋友可以参考下
    2016-04-04
  • Android升级支持库版本遇到的两个问题详解

    Android升级支持库版本遇到的两个问题详解

    安卓平台其中一个很牛逼的地方在于它支持各种不同的设备。从你的平板电脑,到你的手机,电视等,安卓无处不在。这篇文章主要给大家介绍了关于Android升级支持库版本遇到的两个问题,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面来一起看看吧。
    2017-10-10

最新评论