Android实现记住用户名和密码功能

Android 实现记住用户名和密码的功能是通过SharedPreference 存储来实现的。创建一个复选按钮,通过按钮的否选取来进行事件处理。若按钮选中存储账号和密码的信息。若按钮没有选中,则清空账号和密码的信息。

结果演示:

源代码下载地址:

https://github.com/GXS1225/Android————-.git

分析

(1)判断是否输入了账号和密码

 if(name.trim().equals("")){
    Toast.makeText(this, "请您输入用户名!", Toast.LENGTH_SHORT).show();
    return;
   }
   if(pswd.trim().equals("")){
    Toast.makeText(this, "请您输入密码!", Toast.LENGTH_SHORT).show();
    return;
   }

(2)在layout_main.xml定义一个 CheckBox,进行事件处理

//通过
boolean CheckBoxLogin = checkbox.isChecked();
   //按钮被选中,下次进入时会显示账号和密码
   if (CheckBoxLogin)
   {
     Editor editor = sp.edit();
     editor.putString("uname", name);
     editor.putString("upswd", pswd);
     editor.putBoolean("auto", true);
     editor.commit();
   }
   //按钮被选中,清空账号和密码,下次进入时会显示账号和密码
   else
   {
    Editor editor = sp.edit();
    editor.putString("uname", null);
    editor.putString("upswd", null);
    editor.putBoolean("auto", false);
    editor.commit();
    }

(3) SharedPreference 的存储实现

//先定义
SharedPreferences sp = null; 

sp = this.getSharedPreferences("userinfo", Context.MODE_PRIVATE);
//对uname 和 upswd 的操作
 if (sp.getBoolean("checkboxBoolean", false))
   {
    uname.setText(sp.getString("uname", null));
    upswd.setText(sp.getString("upswd", null));
    checkboxButton.setChecked(true);

   }

(4)跳转到Content.java界面

//Intent跳转
Intent intent = new Intent(Welcome.this,Content.class);
startActivity(intent);
finish();

步骤:

先写一个登陆的界面: layout_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical"
 android:background="#ADD8E6">

 <RelativeLayout
  android:id="@+id/login_div"
  android:layout_width="fill_parent"
  android:layout_height="221dp"
  android:layout_margin="15dip"
  android:background="@drawable/btn_bg"
  android:padding="15dip" >

  <TextView
   android:id="@+id/login_user_input"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_alignParentTop="true"
   android:layout_margin="5dp"
   android:text="@string/user"
   android:textSize="16dp"
   android:typeface="sans" />

  <EditText
   android:id="@+id/user_input"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:layout_below="@id/login_user_input"
   android:background="@android:drawable/editbox_background"
   android:inputType="text"
   android:singleLine="true" />

  <TextView
   android:id="@+id/login_pass_input"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_below="@id/user_input"
   android:layout_margin="5dp"
   android:text="@string/pass"
   android:textSize="16dp"
   android:typeface="sans" />

  <EditText
   android:id="@+id/pass_input"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:layout_below="@id/login_pass_input"
   android:background="@android:drawable/editbox_background"
   android:inputType="textPassword"
   android:singleLine="true" />

  <CheckBox
   android:id="@+id/checkBoxLogin"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_alignLeft="@+id/pass_input"
   android:layout_alignParentBottom="true"
   android:text="@string/no_user" />

  <Button
   android:id="@+id/new_user"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_alignParentBottom="true"
   android:layout_alignRight="@+id/pass_input"
   android:layout_marginRight="28dp"
   android:onClick="To_Title"
   android:text="@string/new_user" />

 </RelativeLayout>

  <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical" >

   <TextView
    android:layout_width="402dp"
    android:layout_height="51dp"
    android:layout_marginLeft="50dp"
    android:background="@drawable/gxs_ziti" />

   <Button
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:onClick="To_fruist"
    android:background="@drawable/gxs2"
    android:layout_marginLeft="80dp"
    />

  </LinearLayout>

</LinearLayout>

Welcome.java

package com.gxs.login;
import com.example.login.R;
import com.gxs.listview.*;
import android.os.Bundle;
import android.preference.Preference;
import android.app.Activity;
import android.app.SearchManager.OnCancelListener;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;
public class Welcome extends Activity implements OnClickListener{
 private EditText uname = null;
 private EditText upswd = null;
 private CheckBox checkboxButton = null;
 private Button login = null;
 SharedPreferences sp = null;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.layout_main);
  sp = this.getSharedPreferences("userinfo", Context.MODE_PRIVATE);
  init();

 }

 public void init()
 {
  uname = (EditText) findViewById(R.id.user_input);
  upswd = (EditText) findViewById(R.id.pass_input);
  checkboxButton = (CheckBox) findViewById(R.id.checkBoxLogin);
  login = (Button) findViewById(R.id.new_user);
  if (sp.getBoolean("checkboxBoolean", false))
   {
    uname.setText(sp.getString("uname", null));
    upswd.setText(sp.getString("upswd", null));
    checkboxButton.setChecked(true);

   }
  login.setOnClickListener(this);
 }

 @Override
 public void onClick(View v) {
  if (v == login){
   String name = uname.getText().toString();
   String pswd = upswd.getText().toString();
   if(name.trim().equals("")){
    Toast.makeText(this,
    "请您输入用户名!", Toast.LENGTH_SHORT).show();
    return;
   }
   if(pswd.trim().equals("")){
    Toast.makeText(this,
    "请您输入密码!", Toast.LENGTH_SHORT).show();
    return;
   }
   boolean CheckBoxLogin = checkboxButton.isChecked();
   if (CheckBoxLogin)
   {
     Editor editor = sp.edit();
     editor.putString("uname", name);
     editor.putString("upswd", pswd);
     editor.putBoolean("checkboxBoolean", true);
     editor.commit();
   }
   else
   {
    Editor editor = sp.edit();
    editor.putString("uname", null);
    editor.putString("upswd", null);
    editor.putBoolean("checkboxBoolean", false);
    editor.commit();
    }
   //Intent跳转
   Intent intent=new Intent(Welcome.this,Content.class);
   startActivity(intent);
   finish();
  }
 }

}

Content.java

package com.gxs.listview;
import java.util.List;
import com.example.login.R;
import com.gxs.*;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class Content extends Activity{
 private ListView listview_fruits;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  // TODO Auto-generated method stub
  super.onCreate(savedInstanceState);
  setContentView(R.layout.content);

 }
}

content.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 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=".Welcome"
 >

 <TextView
  android:id="@+id/textView1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="内容"
  android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

更多内容请参考专题:Android密码使用教程

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

(0)

相关推荐

  • 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_

  • Android SharedPreferences实现记住密码和自动登录界面

    SharedPreferences介绍: SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置参数,它是采用xml文件存放数据的,文件存放在"/data/data<package name>/shared_prefs"目录下. SharedPreferences的用法: 由于SharedPreferences是一个接口,而且在这个接口里没有提供写入数据和读取数据的能力.但它是通过其Editor接口中的一些方法来操作Shared

  • Android sharedPreferences实现记住密码功能

    实现记住密码功能,供大家参考,具体内容如下 编写界面交互代码: package com.example.bz0209.login; import android.content.DialogInterface; import android.content.Intent; import android.content.SharedPreferences; import android.support.v7.app.AppCompatActivity; import android.os.Bund

  • Android实现带有记住密码功能的登陆界面

    本文实例为大家分享了Android带有记住密码功能的登陆界面实现代码,供大家参考,具体内容如下 1.设计思路 主要采用SharedPreferences来保存用户数据,本Demo没有经过加密,所有一旦Android系统被ROOT的话,其他用户就可以查看用户的私有目录,密码文件就很不安全.所以真正应用在软件上面的,一定要经过加密才保存,可以选择MD5加密. SharedPreferences介绍可以参看这篇博文:http://www.jb51.net/article/84859.htm TextW

  • Android通过"记住密码"功能学习数据存储类SharedPreferences详解及实例

    SharedPreferences是Android中存储简单数据的一个工具类.可以想象它是一个小小的Cookie,它通过用键值对的方式把简单数据类型(boolean.int.float.long和String)存储在应用程序的私有目录下(data/data/包名/shared_prefs/)自己定义的xml文件中. 一.简介 它提供一种轻量级的数据存储方式,通过eidt()方法来修改里面的内容,通过Commit()方法来提交修改后的内容. 二.重要方法 public abstract boole

  • Android 使用SharedPreferrences储存密码登录界面记住密码功能

    Android存储方式有很多种,在这里所用的存储方式是SharedPreferrences, 其采用了Map数据结构来存储数据,以键值的方式存储,可以简单的读取与写入.所以比较适合我们今天做的这个项目.我们来看一下运行图: 一.布局界面 1.login_top.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.a

  • Android实现登录界面记住密码的存储

    Android存储方式有很多种,在这里所用的存储方式是SharedPreferrences, 其采用了Map数据结构来存储数据,以键值的方式存储,可以简单的读取与写入.所以比较适合我们今天做的这个项目.我们来看一下运行图: 一.布局界面 1.login_top.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.a

  • Android实现记住用户名和密码功能

    Android 实现记住用户名和密码的功能是通过SharedPreference 存储来实现的.创建一个复选按钮,通过按钮的否选取来进行事件处理.若按钮选中存储账号和密码的信息.若按钮没有选中,则清空账号和密码的信息. 结果演示: 源代码下载地址: https://github.com/GXS1225/Android-----.git 分析 (1)判断是否输入了账号和密码 if(name.trim().equals("")){ Toast.makeText(this, "请您

  • Android通过SharedPreferences实现自动登录记住用户名和密码功能

    最近Android项目需要一个自动登录功能,完成之后,特总结一下,此功能依靠SharedPreferences进行实现. SharedPreferences简介 SharedPreferences也是一种轻型的数据存储方式,它的本质是基于XML文件存储key-value键值对数据,通常用来存储一些简单的配置信息.其存储位置在/data/data/<包名>/shared_prefs目录下.SharedPreferences对象本身只能获取数据而不支持存储和修改,存储修改是通过Editor对象实现

  • IOS NSUserDefault 记住用户名及密码功能的实例代码

    一般的登录界面都会有一个记住密码的选项,要实现这个功能可以使用NSUserDefault,这里只是讲解明文的处理方式,虽然这样是有一定的风险性的但是目前只是了解如何实现这个功能: 首先声明一个NSUserDefault对象: let userDefaults = NSUserDefaults.standardUserDefaults() //本地操作所需 然后根据是否记住密码按钮的状态来判断是否要为用户名和密码设置值,如果是记住密码,那么需要取出需要记住的密码,并且为这两个TextField赋值

  • Javascript实现登录记住用户名和密码功能

    话不多说,请看代码: <script type="text/javascript"> $(document).ready(function () { $("#UserAccount").focus(); //记住用户名和密码 $('#remebers').click(function () { if ($("#UserAccount").val() == "") { alert("用户名不能为空!&quo

  • android实现记住用户名和密码以及自动登录

    毕业刚开始上班接触的第一个项目移动护士站,接到了第一任务就是登录,要用到自动登录功能,所以在这做个记录,以后用的时候直接来粘贴复制,废话少说,直奔主题 先上一下效果图,由于只是实现功能,界面没有美化,见谅 由于xml文件内容,就不展现在这了,自己写一写就好,爸妈再也不用担心我的学习了,so easy package com.sdufe.login; import android.app.Activity; import android.content.Context; import androi

  • 通过jquery.cookie.js实现记住用户名、密码登录功能

    Cookies 定义:让网站服务器把少量数据储存到客户端的硬盘或内存,从客户端的硬盘读取数据的一种技术: 下载与引入:jquery.cookie.js基于jquery:先引入jquery,再引入:jquery.cookie.js: 下载:http://plugins.jquery.com/cookie/ <script type="text/javascript" src="js/jquery.min.js"></script> <sc

  • 防止浏览器记住用户名及密码的简单实用方法

    如何设置能禁止浏览器自动保存表单信息,比如用户名,密码? 现在很多浏览器都有自动填写功能,我在input上使用了autocomplete="off",但在有的浏览器上还是被记住了用户名跟密码,请问有没有更有效及简便的方法来防止浏览器记住用户名及密码? 1.针对浏览器记住密码 1).首先大部分浏览器都是根据表单域的type="password"来判断密码域的,所以针对这种情况可以采取"动态设置密码域"的方法: 复制代码 代码如下: <inpu

  • Android登录记住多个密码的实现方法

    先给大家说下我实现的思路: 在popouWindow里面加上ListView,数据是把List以字符串按照JSON的样式存入本地,先看看效果 adapter_user_item.xml是listView item中的布局,就一个图片按钮和一个显示按钮 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/

  • 使用jquery的cookie实现登录页记住用户名和密码的方法

    对于初学者来说,登录页记住用户名和密码的功能是经常会遇到的(通常会用javaee的api去实现),今天为大家介绍在前端页面直接用jquery实现该功能(比传统的方法简单多了),长话短说直接进入正题: 在项目中加入jquery.js和jquery.cookie.js两个依赖文件,并加入对应的页面中如: <script type="text/javascript" src="${BasePath}/static/assets/js/jquery.cookie.js"

  • vue登录页实现使用cookie记住7天密码功能的方法

    问题描述 项目的登录页中,会有要求记住7天密码的功能,本篇文章记录一下写法,主要是使用cookie,注释我写的很详细了,大家可以看一下我写的注释的步骤,还是比较详细的.亲测有效 html部分 代码图示 效果图示 代码粘贴 <el-form ref="form" :model="form" label-width="80px" label-position="top" @submit.native.prevent >

随机推荐