大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本篇文章给大家分享的是有关Android应用中使用SharedPreferences实现一个自动登录功能,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
创新互联公司专注于企业成都营销网站建设、网站重做改版、麟游网站定制设计、自适应品牌网站建设、HTML5、购物商城网站建设、集团公司官网建设、成都外贸网站制作、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为麟游等各大城市提供网站开发制作服务。
SharedPreferences介绍:
SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置参数,它是采用xml文件存放数据的,文件存放在"/data/data
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
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(); } }); } }
LogoActivity.java
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(); } }); } }
WelcomeActivity.java
package com.liu.activity; 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); } }
布局文件:
login.xml文件
<?xml version="1.0" encoding="utf-8"?>
logo.xml文件
<?xml version="1.0" encoding="utf-8"?>
welcome.xml
<?xml version="1.0" encoding="utf-8"?>
以上就是Android应用中使用SharedPreferences实现一个自动登录功能,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注创新互联行业资讯频道。