Android实现用户登录记住密码功能

 更新时间:2017年05月19日 14:09:19   作者:爱吃蛋糕的南宫滕逸  
这篇文章主要为大家详细介绍了Android实现用户登录记住密码功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

一、打开之前完成的Case_login进行修改再编辑

二、将注册按钮删除并在登录按钮前拖出一个checkBox,编辑代码如下:

在layout_top.xml文件中进行编辑

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:padding="@dimen/activity_horizontal_margin"
 android:background="@drawable/logintop_roundbg">

 <EditText
  android:id="@+id/etName"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:background="@android:drawable/edit_text"
  android:drawableLeft="@drawable/icon_user"
  android:drawablePadding="10dp"
  android:ems="10"
  android:hint="@string/etName">

  <requestFocus />
 </EditText>

 <EditText
  android:id="@+id/etPassword"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_below="@id/etName"
  android:background="@android:drawable/edit_text"
  android:drawableLeft="@drawable/icon_pass"
  android:drawablePadding="10dp"
  android:ems="10"
  android:hint="@string/etPass"
  android:inputType="textPassword">

  <requestFocus />
 </EditText>

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_below="@+id/etPassword">

  <Button
   android:layout_width="0dp"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:background="@drawable/btn_select"
   android:text="@string/btnLogin" />

  <Button
   android:layout_width="0dp"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:layout_marginLeft="10dp"
   android:background="@drawable/btn_select"
   android:text="@string/btnRegister" />

 </LinearLayout>
</RelativeLayout>

效果图如下:

三、对登录密码及记住密码进行编辑

在LoginAcitvity.java文件进行编写修改,代码如下:

package cn.edu.bzu.case_login;

import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;

public class LoginActivity extends AppCompatActivity {
 private EditText etName;
 private EditText etPassword;
 private CheckBox cbIsRememberPass;
 private SharedPreferences sharedPreferences;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_login);
  initViews();
  sharedPreferences=getSharedPreferences("rememberpassword", Context.MODE_PRIVATE);
  boolean isRemember=sharedPreferences.getBoolean("rememberpassword",false);
  if(isRemember){
   String name=sharedPreferences.getString("name","");
   String password=sharedPreferences.getString("password","");
   etName.setText(name);
   etPassword.setText(password);
   cbIsRememberPass.setChecked(true);


  }

 }
 private void initViews(){
  etName=(EditText)findViewById(R.id.etName);
  etPassword=(EditText)findViewById(R.id.etPassword);
  cbIsRememberPass=(CheckBox) findViewById(R.id.cbIsRememberPass);

 }
 public void login(View view){
  String name=etName.getText().toString();
  String password=etPassword.getText().toString();
  if("admin".equals(name)&&"123456".equals(password)){
   SharedPreferences.Editor editor=sharedPreferences.edit();
   if(cbIsRememberPass.isChecked()){
    editor.putBoolean("rememberpassword",true);
    editor.putString("name",name);
    editor.putString("password",password);

   }
   else {
    editor.clear();
   }
   editor.commit();
   Intent intent=new Intent(this,MainActivity.class);
   startActivity(intent);
   finish();
  }
  else {
   Toast.makeText(this,"账户或密码错误",Toast.LENGTH_LONG).show();
  }

 }

}

四、设计登录后的界面

新建一个MainActivity.java文件,同时生成一个activity_main.xml,对其进行编写代码效果图如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/activity_main"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context="cn.edu.bzu.case_login.MainActivity">

 <TextView
  android:text="Welcome you"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerVertical="true"
  android:layout_centerHorizontal="true"
  android:textSize="40sp"
  android:id="@+id/textView" />
</RelativeLayout>

五、结果演示

再次打开软件密码就记住了如图:


输入错误的密码有提示如下图:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • android scrollview顶部渐渐消失实现实例详解

    android scrollview顶部渐渐消失实现实例详解

    这篇文章主要为大家介绍了android scrollview顶部渐渐消失实现实例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-11-11
  • 加载页面遮挡耗时操作任务页面--第三方开源之AndroidProgressLayout

    加载页面遮挡耗时操作任务页面--第三方开源之AndroidProgressLayout

    AndroidProgressLayout实现为界面添加圆形进度条。调用setprogress()方法显示和隐藏进度条,这篇文章主要介绍了加载页面遮挡耗时操作任务页面--第三方开源之AndroidProgressLayout的相关资料,需要的朋友可以参考下
    2015-11-11
  • Android中实现词组高亮TextView方法示例

    Android中实现词组高亮TextView方法示例

    高亮显示大家应该都不陌生,在开发中经常会遇到这个需求,所以下面这篇文章主要给大家介绍了关于Android中实现词组高亮TextView的相关资料,文中通过示例代码介绍的非常详细,需要的朋友可以参考借鉴,下面来一起看看吧。
    2017-10-10
  • Android文字匹配度算法及实际应用示例

    Android文字匹配度算法及实际应用示例

    本文介绍了Android应用中常用的文字匹配度算法Levenshtein Distance,并给出了实际应用示例,通过合理选择和应用文字匹配度算法,可以实现多种功能,提升用户体验,增强应用的实用性,需要的朋友可以参考下
    2024-05-05
  • Android 自定义日期段选择控件功能(开始时间-结束时间)

    Android 自定义日期段选择控件功能(开始时间-结束时间)

    这篇文章主要介绍了Android 自定义日期段选择控件功能,开始时间-结束时间。本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-04-04
  • 浅谈Android中Drawable使用知识总结

    浅谈Android中Drawable使用知识总结

    本篇文章主要介绍了浅谈Android中Drawable使用知识总结,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-12-12
  • Android实现滑动到顶部悬停的效果

    Android实现滑动到顶部悬停的效果

    这篇文章给大家介绍一种不常见的实现Android滑动到顶部悬停效果的方式,对大家开发Android具有一定的参考借鉴价值,有需要的朋友们可以来一起看看。
    2016-09-09
  • Android中内存泄漏需要的注意点

    Android中内存泄漏需要的注意点

    在本篇文章里小编给大家整理了关于Android中内存泄漏需要的注意点的相关内容,有此需要的朋友们参考下。
    2019-06-06
  • Android高级组件AutoCompleteTextView自动完成文本框使用详解

    Android高级组件AutoCompleteTextView自动完成文本框使用详解

    这篇文章主要介绍了Android高级组件AutoCompleteTextView自动完成文本框的使用,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-12-12
  • Android自定义控件之仿优酷菜单

    Android自定义控件之仿优酷菜单

    这篇文章主要为大家详细介绍了Android自定义控件之仿优酷菜单的相关资料,感兴趣的小伙伴们可以参考一下
    2016-06-06

最新评论