Android通过SharedPreferences实现自动登录记住用户名和密码功能
脚本之家 / 编程助手:解决程序员“几乎”所有问题!
脚本之家官方知识库 → 点击立即使用
最近Android项目需要一个自动登录功能,完成之后,特总结一下,此功能依靠SharedPreferences进行实现。
SharedPreferences简介
SharedPreferences也是一种轻型的数据存储方式,它的本质是基于XML文件存储key-value键值对数据,通常用来存储一些简单的配置信息。其存储位置在/data/data/<包名>/shared_prefs目录下。SharedPreferences对象本身只能获取数据而不支持存储和修改,存储修改是通过Editor对象实现。
SharedPreferences使用实例:记住用户名密码自动登录
大致了解了SharedPreference之后,接下来看个记住用户名密码自动登录的例子:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | package com.dt5000.ischool.activity; import android.annotation.SuppressLint; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; import android.os.Bundle; import android.util.Log; import android.view.KeyEvent; import android.view.View; import android.widget.CheckBox; import android.widget.EditText; import com.dt5000.ischool.util.DTUtil; import com.dt5000.ischool.util.MyApplication; /** * @author: duanyr * @创建时间: 2012-11-13 下午2:36:47 * * @类说明:登录界面 */ @SuppressLint ( "WorldReadableFiles" ) public class LoginActivity extends DTUtil { private static final String TAG = "用户登录" ; private EditText username; private EditText password; private CheckBox autoLogin; private SharedPreferences sharedPreferences; private String message; @Override public void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); MyApplication.getInstance().addActivity( this ); sharedPreferences = this .getSharedPreferences( "userInfo" ,Context.MODE_WORLD_READABLE); if (sharedPreferences.getBoolean( "AUTO_ISCHECK" , false )) { Intent intent = new Intent(); intent.setClass(LoginActivity. this , MainActivity. class ); startActivity(intent); } else { setContentView(R.layout.activity_login); initView(); } } /** * 初始化视图控件 */ public void initView() { Log.i(TAG, "初始化视图控件" ); username = (EditText) findViewById(R.id.username); password = (EditText) findViewById(R.id.password); autoLogin = (CheckBox) findViewById(R.id.autoLogin); // 默认记住用户名 username.setText(sharedPreferences.getString( "userName" , "" )); } /** * 点击登录按钮时触发的方法 * @param view */ public void userLogin(View view) { String usernameString = username.getText().toString(); String passwordString = password.getText().toString(); if (validateUser(usernameString, passwordString)) { Editor editor = sharedPreferences.edit(); editor.putString( "userName" , usernameString); if (autoLogin.isChecked()) { // 自动登录 editor.putString( "password" , passwordString); editor.putBoolean( "AUTO_ISCHECK" , true ).commit(); } editor.commit(); Intent intent = new Intent(); intent.setClass(LoginActivity. this , MainActivity. class ); startActivity(intent); } else { alert( this , message); } } //游客登录 public void visitorLogin(View view) { Intent intent = new Intent(); intent.setClass(LoginActivity. this , MainActivity. class ); startActivity(intent); } /** * 验证用户名密码是否正确 * * @param username * @param password * @return */ public boolean validateUser(String username, String password) { Boolean flag = false ; try { //...此处为调用web服务,验证用户名密码的服务,特此省略 flag = true ; } catch (Exception e) { // TODO Auto-generated catch block Log.e(TAG, e.getMessage()); message = "连接服务器失败" ; } return flag; } /** * 点击退出按钮时触发的方法 */ public void logout_listener(View view) { dialog_Exit( this ); } /** * 监听返回按钮,此为登录界面再返回的话给出退出提示 */ public boolean onKeyDown( int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0 ) { dialog_Exit( this ); return false ; } return false ; } } |
页面布局截图:
生成的配置文件位置和代码
userInfo.xml的具体代码如下:
1 2 3 4 5 6 | <?xml version= '1.0' encoding= 'utf-8' standalone= 'yes' ?> <map> <string name= "userName" > 777 </string> <string name= "password" > 111111 </string> < boolean name= "AUTO_ISCHECK" value= "true" /> </map> |
以上所述是小编给大家介绍的Android通过SharedPreferences实现自动登录记住用户名和密码功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
微信公众号搜索 “ 脚本之家 ” ,选择关注
程序猿的那些事、送书等活动等着你
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!
相关文章
深入理解Android组件间通信机制对面向对象特性的影响详解
本篇文章是对Android组件间通信机制对面向对象特性的影响进行了详细的分析介绍,需要的朋友参考下2013-05-05Android中控件GridView实现设置行列分割线的方法示例
这篇文章主要介绍了利用Android中控件GridView实现设置行列分割线的方法,文中给出了详细的介绍与示例代码,相信对大家具有一定的参考价值,有需要的朋友们下面来一起看看吧。2017-01-01Android自定义控件ViewFipper实现竖直跑马灯效果
这篇文章主要为大家详细介绍了Android自定义控件ViewFipper实现竖直跑马灯效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-12-12
最新评论