本篇文章給大家分享的是有關(guān)Android應用中使用SharedPreferences實現(xiàn)一個自動登錄功能,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
創(chuàng)新互聯(lián)公司專注于企業(yè)成都營銷網(wǎng)站建設、網(wǎng)站重做改版、麟游網(wǎng)站定制設計、自適應品牌網(wǎng)站建設、HTML5、購物商城網(wǎng)站建設、集團公司官網(wǎng)建設、成都外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應式網(wǎng)頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為麟游等各大城市提供網(wǎng)站開發(fā)制作服務。
SharedPreferences介紹:
SharedPreferences是Android平臺上一個輕量級的存儲類,主要是保存一些常用的配置參數(shù),它是采用xml文件存放數(shù)據(jù)的,文件存放在"/data/data
SharedPreferences的用法:
由于SharedPreferences是一個接口,而且在這個接口里沒有提供寫入數(shù)據(jù)和讀取數(shù)據(jù)的能力。但它是通過其Editor接口中的一些方法來操作SharedPreference的,用法見下面代碼:
Context.getSharedPreferences(String name,int mode)來得到一個SharedPreferences實例
name:是指文件名稱,不需要加后綴.xml,系統(tǒng)會自動為我們添加上。
mode:是指定讀寫方式,其值有三種,分別為:
Context.MODE_PRIVATE:指定該SharedPreferences數(shù)據(jù)只能被本應用程序讀、寫
Context.MODE_WORLD_READABLE:指定該SharedPreferences數(shù)據(jù)能被其他應用程序讀,但不能寫
Context.MODE_WORLD_WRITEABLE:指定該SharedPreferences數(shù)據(jù)能被其他應用程序讀寫。
工程目錄:
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); //判斷記住密碼多選框的狀態(tài) if(sp.getBoolean("ISCHECK", false)) { //設置默認是記錄密碼狀態(tài) rem_pw.setChecked(true); userName.setText(sp.getString("USER_NAME", "")); password.setText(sp.getString("PASSWORD", "")); //判斷自動登陸多選框狀態(tài) if(sp.getBoolean("AUTO_ISCHECK", false)) { //設置默認是自動登錄狀態(tài) auto_login.setChecked(true); //跳轉(zhuǎn)界面 Intent intent = new Intent(LoginActivity.this,LogoActivity.class); LoginActivity.this.startActivity(intent); } } // 登錄監(jiān)聽事件 現(xiàn)在默認為用戶名為: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(); //登錄成功和記住密碼框為選中狀態(tài)才保存用戶信息 if(rem_pw.isChecked()) { //記住用戶名、密碼、 Editor editor = sp.edit(); editor.putString("USER_NAME", userNameValue); editor.putString("PASSWORD",passwordValue); editor.commit(); } //跳轉(zhuǎn)界面 Intent intent = new Intent(LoginActivity.this,LogoActivity.class); LoginActivity.this.startActivity(intent); //finish(); }else{ Toast.makeText(LoginActivity.this,"用戶名或密碼錯誤,請重新登錄", Toast.LENGTH_LONG).show(); } } }); //監(jiān)聽記住密碼多選框按鈕事件 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(); } } }); //監(jiān)聽自動登錄多選框事件 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實現(xiàn)一個自動登錄功能,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。