Android 记住密码和自动登录界面的实现(SharedPreferences 的用法)
原文:http://blog.csdn.net/liuyiming_/article/details/7704923
SharedPreferences介绍:
SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置参数,它是采用xml文件存放数据的,文件存放在"/data/data<package name>/shared_prefs"目录下。
SharedPreferences的用法:
由于SharedPreferences是一个接口,而且在这个接口里没有提供写入数据和读取数据的能力。但它是通过其Editor接口中的一些方法来操作SharedPreference的,用法见下面代码:
Context.getSharedPreferences(String name,int mode)来得到一个SharedPreferences实例
name:是指文件名称,不需要加后缀.xml,系统会自动为我们添加上。
mode:是指定读写方式,其值有三种,分别为:
Context.MODE_PRIVATE:指定该SharedPreferences数据只能被本应用程序读、写
Context.MODE_WORLD_READABLE:指定该SharedPreferences数据能被其他应用程序读,但不能写
Context.MODE_WORLD_WRITEABLE:指定该SharedPreferences数据能被其他应用程序读写。
结果截图:



工程目录:

Java代码
LoginActivity.java
- <span style="font-family:'Courier New';">package com.liu.activity;
- import android.app.Activity;
- import android.app.backup.SharedPreferencesBackupHelper;
- import android.content.Context;
- import android.content.Intent;
- import android.content.SharedPreferences;
- import android.content.SharedPreferences.Editor;
- import android.os.Bundle;
- import android.text.Spannable;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.view.Window;
- import android.widget.Button;
- import android.widget.CheckBox;
- import android.widget.CompoundButton;
- import android.widget.CompoundButton.OnCheckedChangeListener;
- import android.widget.EditText;
- import android.widget.ImageButton;
- import android.widget.Toast;
- public class LoginActivity extends Activity {
- private EditText userName, password;
- private CheckBox rem_pw, auto_login;
- private Button btn_login;
- private ImageButton btnQuit;
- private String userNameValue,passwordValue;
- private SharedPreferences sp;
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- //去除标题
- this.requestWindowFeature(Window.FEATURE_NO_TITLE);
- setContentView(R.layout.login);
- //获得实例对象
- sp = this.getSharedPreferences("userInfo", Context.MODE_WORLD_READABLE);
- userName = (EditText) findViewById(R.id.et_zh);
- password = (EditText) findViewById(R.id.et_mima);
- rem_pw = (CheckBox) findViewById(R.id.cb_mima);
- auto_login = (CheckBox) findViewById(R.id.cb_auto);
- btn_login = (Button) findViewById(R.id.btn_login);
- btnQuit = (ImageButton)findViewById(R.id.img_btn);
- //判断记住密码多选框的状态
- if(sp.getBoolean("ISCHECK", false))
- {
- //设置默认是记录密码状态
- rem_pw.setChecked(true);
- userName.setText(sp.getString("USER_NAME", ""));
- password.setText(sp.getString("PASSWORD", ""));
- //判断自动登陆多选框状态
- if(sp.getBoolean("AUTO_ISCHECK", false))
- {
- //设置默认是自动登录状态
- auto_login.setChecked(true);
- //跳转界面
- Intent intent = new Intent(LoginActivity.this,LogoActivity.class);
- LoginActivity.this.startActivity(intent);
- }
- }
- // 登录监听事件 现在默认为用户名为:liu 密码:123
- btn_login.setOnClickListener(new OnClickListener() {
- public void onClick(View v) {
- userNameValue = userName.getText().toString();
- passwordValue = password.getText().toString();
- if(userNameValue.equals("liu")&&passwordValue.equals("123"))
- {
- Toast.makeText(LoginActivity.this,"登录成功", Toast.LENGTH_SHORT).show();
- //登录成功和记住密码框为选中状态才保存用户信息
- if(rem_pw.isChecked())
- {
- //记住用户名、密码、
- Editor editor = sp.edit();
- editor.putString("USER_NAME", userNameValue);
- editor.putString("PASSWORD",passwordValue);
- editor.commit();
- }
- //跳转界面
- Intent intent = new Intent(LoginActivity.this,LogoActivity.class);
- LoginActivity.this.startActivity(intent);
- //finish();
- }else{
- Toast.makeText(LoginActivity.this,"用户名或密码错误,请重新登录", Toast.LENGTH_LONG).show();
- }
- }
- });
- //监听记住密码多选框按钮事件
- rem_pw.setOnCheckedChangeListener(new OnCheckedChangeListener() {
- public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
- if (rem_pw.isChecked()) {
- System.out.println("记住密码已选中");
- sp.edit().putBoolean("ISCHECK", true).commit();
- }else {
- System.out.println("记住密码没有选中");
- sp.edit().putBoolean("ISCHECK", false).commit();
- }
- }
- });
- //监听自动登录多选框事件
- auto_login.setOnCheckedChangeListener(new OnCheckedChangeListener() {
- public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {
- if (auto_login.isChecked()) {
- System.out.println("自动登录已选中");
- sp.edit().putBoolean("AUTO_ISCHECK", true).commit();
- } else {
- System.out.println("自动登录没有选中");
- sp.edit().putBoolean("AUTO_ISCHECK", false).commit();
- }
- }
- });
- btnQuit.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- finish();
- }
- });
- }
- }</span>
LogoActivity.java
- <span style="font-family:'Courier New';">package com.liu.activity;
- import android.app.Activity;
- import android.content.Intent;
- import android.content.SharedPreferences;
- import android.content.SharedPreferences.Editor;
- import android.opengl.ETC1;
- import android.os.Bundle;
- import android.view.View;
- import android.view.View.OnClickListener;
- import android.view.Window;
- import android.view.animation.AlphaAnimation;
- import android.view.animation.Animation;
- import android.view.animation.Animation.AnimationListener;
- import android.widget.Button;
- import android.widget.ImageButton;
- import android.widget.ImageView;
- import android.widget.ProgressBar;
- public class LogoActivity extends Activity {
- private ProgressBar progressBar;
- private Button backButton;
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // 去除标题
- this.requestWindowFeature(Window.FEATURE_NO_TITLE);
- setContentView(R.layout.logo);
- progressBar = (ProgressBar) findViewById(R.id.pgBar);
- backButton = (Button) findViewById(R.id.btn_back);
- Intent intent = new Intent(this, WelcomeAvtivity.class);
- LogoActivity.this.startActivity(intent);
- backButton.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- finish();
- }
- });
- }
- }
- </span>
WelcomeActivity.java
- <span style="font-family:'Courier New';"><span style="BACKGROUND-COLOR: rgb(240,240,240); WHITE-SPACE: pre">package com.liu.activity;</span>
- import android.app.Activity;
- import android.os.Bundle;
- public class WelcomeAvtivity extends Activity {
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- // TODO Auto-generated method stub
- super.onCreate(savedInstanceState);
- setContentView(R.layout.welcome);
- }
- }</span>
布局文件:
login.xml文件
- <span style="font-family:'Courier New';"><?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@drawable/logo_bg"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content" >
- <ImageButton
- android:id="@+id/img_btn"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:background="@drawable/quit"/>
- <TextView
- android:id="@+id/tv_zh"
- android:layout_width="wrap_content"
- android:layout_height="35dip"
- android:layout_marginLeft="12dip"
- android:layout_marginTop="10dip"
- android:gravity="bottom"
- android:text="帐号:"
- android:textColor="#000000"
- android:textSize="18sp" />
- <EditText
- android:id="@+id/et_zh"
- android:layout_width="fill_parent"
- android:layout_height="40dip"
- android:layout_below="@id/tv_zh"
- android:layout_marginLeft="12dip"
- android:layout_marginRight="10dip" />
- <TextView
- android:id="@+id/tv_mima"
- android:layout_width="wrap_content"
- android:layout_height="35dip"
- android:layout_below="@id/et_zh"
- android:layout_marginLeft="12dip"
- android:layout_marginTop="10dip"
- android:gravity="bottom"
- android:text="密码:"
- android:textColor="#000000"
- android:textSize="18sp" />
- <EditText
- android:id="@+id/et_mima"
- android:layout_width="fill_parent"
- android:layout_height="40dip"
- android:layout_below="@id/tv_mima"
- android:layout_marginLeft="12dip"
- android:layout_marginRight="10dip"
- android:maxLines="200"
- android:password="true"
- android:scrollHorizontally="true" />
- <CheckBox
- android:id="@+id/cb_mima"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/et_mima"
- android:layout_marginLeft="12dip"
- android:text="记住密码"
- android:textColor="#000000" />
- <CheckBox
- android:id="@+id/cb_auto"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/cb_mima"
- android:layout_marginLeft="12dip"
- android:text="自动登录"
- android:textColor="#000000" />
- <Button
- android:id="@+id/btn_login"
- android:layout_width="80dip"
- android:layout_height="40dip"
- android:layout_below="@id/et_mima"
- android:layout_alignParentRight="true"
- android:layout_alignTop="@id/cb_auto"
- android:layout_marginRight="10dip"
- android:gravity="center"
- android:text="登录"
- android:textColor="#000000"
- android:textSize="18sp"/>
- </RelativeLayout>
- </LinearLayout></span>
logo.xml文件
- <span style="font-family:'Courier New';"><?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@drawable/logo_bg"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="3">
- <ProgressBar
- android:id="@+id/pgBar"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true" />
- <TextView
- android:id="@+id/tv1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/pgBar"
- android:layout_centerHorizontal="true"
- android:text="正在登录..."
- android:textColor="#000000"
- android:textSize="18sp" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:gravity="center"
- android:orientation="vertical" >
- <Button
- android:id="@+id/btn_back"
- android:layout_width="70dip"
- android:layout_height="35dip"
- android:text="取消"
- android:textColor="#000000"
- android:textSize="12sp" />
- </LinearLayout>
- </LinearLayout></span>
welcome.xml
- <span style="font-family:'Courier New';"><?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_gravity="center"
- android:background="@drawable/login_bg"
- android:orientation="vertical" >
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:text="登陆成功,进入用户界面"
- android:textColor="#000000"
- android:textSize="20sp" />
- </LinearLayout></span>
Android 记住密码和自动登录界面的实现(SharedPreferences 的用法)的更多相关文章
- 基于localStorge开发登录模块的记住密码与自动登录
前沿||我是乐于分享,善于交流的鸟窝 先做写一篇关于登录模块中记住密码与自动登录的模块.鸟窝微信:jkxx123321 关于这个模块功能模块的由来,这是鸟大大的处女秀,为什么这么说呢?一天在群里,一个 ...
- php中实现记住密码下次自动登录的例子
这篇文章主要介绍了php中实现记住密码下次自动登录的例子,本文使用cookie实现记住密码和自动登录功能,需要的朋友可以参考下 做网站的时候经常会碰到要实现记住密码,下次自动登录,一周内免登陆,一个月 ...
- WinForm应用程序的开机自启、记住密码,自动登录的实现
一.思路: 1.开机自启,自然是需要用到注册表,我们需要把程序添加到电脑的注册表中去 2.记住密码,自动登录,开机自启,在页面的呈现我们都使用复选框按钮来呈现 3.数据持久化,不能是数据库,可以是sq ...
- 一个简单WPF登陆界面,包含记住密码,自动登录等功能,简洁美观
简介:这是一个自己以前用WPF设计的登陆界面,属于一个实验性的界面窗体,如果用于产品还很有不足.但也是有一点学习价值.后台代码略有复杂,但基本上都有注释 分类,略有代码经验的一般都能看懂. 登陆界面外 ...
- 数据加密实战之记住密码、自动登录和加密保存数据运用DES和MD5混合使用
MD5的简介:MD5即Message-Digest Algorithm 5(信息-摘要算法5),用于确保信息传输完整一致.是计算机广泛使用的杂凑算法之一(又译摘要算法.哈希算法),主流编程语言普遍已有 ...
- android记住密码和自动登陆
import android.app.Activity; import android.content.Intent; import android.content.SharedPreferences ...
- cookie、session及实现记住密码,自动登录
在登录帐号.密码框下,有三种帐号登录模式可供选择,用户可根据自己的具体情况选择其中一种适合自己的模式. 1.网吧模式:勾选网吧模式后,登录的帐号会在歪歪注销/退出的时候自动清除,不会留在登录框中,可以 ...
- Cookie实现记住密码、自动登录
前端代码 <form id="form" action="xxx" method="post"> <div> < ...
- Android之记住密码与自动登陆实现
本文主要讲述了利用sharedpreference实现记住密码与自动登陆功能 根据checkbox的状态存储用户名与密码 将结果保存在自定义的application中,成为全局变量 布局文件 < ...
随机推荐
- Java内存模型(JMM)那些事
本文是库存文章,去年年底学习了慕课网的并发编程课程,今年年初看完了<深入理解Java虚拟机>这本书,但是很多内容忘得差不多了,打算写写博客回忆一下那些忘在脑后的知识点. 温故而知新 更多J ...
- 安卓开发:Android Studio自动import
我只想说,真好用!哈哈,提高效率的好东西. 参考: [https://blog.csdn.net/pjdd123/article/details/80953669] [https://www.cnbl ...
- ‘\0’的ASCII码
1.'\0'的ASCII码为0 2.用串口发送字符串时,可以通过'\0'判断字符串是否结束,但发送数字数组的时候不能通过'\0'判断数组是否结束,因为数字0与'\0'的ASCII码值相同.
- 实现在vue中element-ui的el-dialog弹框拖拽
参考:实现在vue中element-ui的el-dialog弹框拖拽 1.在 utils 中新建 directives.js 文件 import Vue from 'vue' // v-dialogD ...
- 【PAT甲级】1100 Mars Numbers (20 分)
题意: 输入一个正整数N(<100),接着输入N组数据每组包括一行字符串,将其翻译为另一个星球的数字. AAAAAccepted code: #define HAVE_STRUCT_TIMESP ...
- Java面向对象private
1. 类 package cn.itcast.day06.demo03; /* 对于基本类型当中的boolean值,Getter方法一定要写成isXxx的形式,而setXxx规则不变. */ publ ...
- java 用BigDecimal计算商品单价乘以折扣价
商品单价价格是单位是(分),用户下单金额=商品单价*折扣 代码如下 Integer discount = 5 折扣五折 Integer orderPrice = 1000 单位分 BigDecim ...
- 分布式系统(二) --SOA 以及一些网络通信协议TCP/UDP SYN攻击
SOA(面向服务的架构):Service Oriented Architecture面向服务的架构.也就是把工程拆分成服务层.表现层两个工程.服务层中包含业务逻辑,只需要对外提供服务即可.表现层只需要 ...
- 实验四《Android程序设计》
实验四<Android程序设计> 一.实验内容 1.Android Stuidio的安装测试 2.Activity测试 3.UI测试 4.布局测试 5.事件处理测试 二.实验步骤 第一部分 ...
- 学习JavaScript数据结构与算法---前端进阶系列
学习建议 1.视频学习---认知 建议:在中国慕课上找"数据结构"相关的视频教程.中国大学MOOC 推荐清华大学.北京大学.浙江大学的教程,可先试看,然后根据自身的情况选择视频进行 ...