Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android簡單數據存儲類SharedPreferences詳解及實例(通過“記住密碼”功能學習SharedPreferences)

Android簡單數據存儲類SharedPreferences詳解及實例(通過“記住密碼”功能學習SharedPreferences)

編輯:Android開發實例

  SharedPreferences是Android中存儲簡單數據的一個工具類。可以想象它是一個小小的Cookie,它通過用鍵值對的方式把簡單數據類型(boolean、int、float、long和String)存儲在應用程序的私有目錄下(data/data/包名/shared_prefs/)自己定義的xml文件中。

 

一、簡介

  它提供一種輕量級的數據存儲方式,通過eidt()方法來修改裡面的內容,通過Commit()方法來提交修改後的內容。

 

二、重要方法

public abstract boolean contains (String key) :檢查是否已存在該文件,其中key是xml的文件名。

edit():為preferences創建一個編輯器Editor,通過創建的Editor可以修改preferences裡面的數據,但必須執行commit()方法。

getAll():返回preferences裡面的多有數據。

getBoolean(String key, boolean defValue):獲取Boolean型數據

getFloat(String key, float defValue):獲取Float型數據

getInt(String key, int defValue):獲取Int型數據

getLong(String key, long defValue):獲取Long型數據

getString(String key, String defValue):獲取String型數據

registerOnSharedPreferenceChangeListener(SharedPreferences.OnSharedPreferenceChangeListener listener):注冊一個當preference發生改變時被調用的回調函數。

unregisterOnSharedPreferenceChangeListener(SharedPreferences.OnSharedPreferenceChangeListener listener):刪除當前回調函數。

 

三、重要接口SharedPreferences.Editor

  1.簡介

  用於修改SharedPreferences對象的內容,所有更改都是在編輯器所做的批處理,而不是復制回原來的SharedPreferences或持久化存儲,直到你調用commit(),才將持久化存儲。

  

  2.重要方法

  clear():清除內容。

  commit():提交修改

  remove(String key):刪除preference

下面通過“記住密碼”功能

 

四、實例

  效果圖如下

首頁

 

登錄成功後的頁面

 

當第一次登錄點擊”記住密碼“後,第二次打開時的頁面

 

2.代碼

布局文件 login.xml

 

  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  3.  android:layout_width="fill_parent" android:layout_height="fill_parent" 
  4.  android:gravity="right" android:layout_gravity="right" 
  5.  android:background="@drawable/default_bg" android:orientation="vertical"> 
  6.  <TableLayout android:layout_width="fill_parent" 
  7.   android:layout_height="wrap_content" android:stretchColumns="1"> 
  8.   <TableRow android:gravity="center" android:layout_gravity="center"> 
  9.    <ImageView android:layout_width="fill_parent"   
  10.     android:layout_height="wrap_content" android:id="@+id/ivlogo" 
  11.     > 
  12.    </ImageView> 
  13.   </TableRow> 
  14.  </TableLayout> 
  15.  <TableLayout android:layout_width="fill_parent" 
  16.   android:layout_height="wrap_content" android:stretchColumns="1"> 
  17.   <TableRow android:layout_marginTop="100dip"> 
  18.    <TextView android:layout_width="wrap_content" 
  19.     android:layout_marginLeft="20dip" android:gravity="center_vertical" 
  20.     android:layout_height="wrap_content" android:id="@+id/tvaccount" 
  21.     android:text="帳號:" android:textSize="20sp"> 
  22.    </TextView> 
  23.  
  24.    <EditText android:layout_width="70px" android:layout_height="wrap_content" 
  25.     android:id="@+id/etaccount" android:layout_marginRight="20dip" 
  26.     android:maxLength="20"></EditText> 
  27.   </TableRow> 
  28.   <TableRow android:layout_marginTop="10dip"> 
  29.    <TextView android:layout_width="wrap_content" 
  30.     android:layout_height="wrap_content" android:id="@+id/tvpw" 
  31.     android:layout_marginLeft="20dip" android:gravity="center_vertical" 
  32.     android:text="密碼:" android:textSize="20sp"> 
  33.    </TextView> 
  34.  
  35.    <EditText android:layout_width="70px" android:layout_height="wrap_content" 
  36.     android:layout_marginRight="20dip" android:id="@+id/etpw" 
  37.     android:inputType="textPassword"></EditText> 
  38.   </TableRow> 
  39.  </TableLayout> 
  40. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  41.   android:layout_width="wrap_content" android:layout_height="wrap_content" 
  42.   android:orientation="horizontal" android:layout_marginTop="5dip" android:layout_marginRight="20dip"> 
  43.    
  44.   <TextView android:layout_width="wrap_content" 
  45.    android:layout_height="wrap_content" android:id="@+id/tvclear" 
  46.    android:text="清除Cookies" android:textColor="#aa0000" android:textSize="12px"></TextView> 
  47.     
  48.  </LinearLayout> 
  49.  <TableLayout android:layout_width="fill_parent" 
  50.   android:layout_height="wrap_content" android:layout_marginTop="20dip"> 
  51.   <TableRow android:gravity="center" android:layout_width="fill_parent"> 
  52.    <Button android:layout_width="100px" android:layout_height="wrap_content" 
  53.     android:id="@+id/btnlogin" android:layout_gravity="center" 
  54.     android:text="登錄"></Button> 
  55.  
  56.    <Button android:layout_width="100px" android:layout_height="wrap_content" 
  57.     android:id="@+id/btnexit" android:layout_gravity="center" 
  58.     android:text="退出"></Button> 
  59.   </TableRow> 
  60.  </TableLayout> 
  61.  
  62.  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  63.   android:layout_width="wrap_content" android:layout_height="wrap_content" 
  64.   android:orientation="horizontal" android:layout_marginTop="25dip"> 
  65.  
  66.   <CheckBox android:layout_width="wrap_content" 
  67.    android:layout_height="wrap_content" android:id="@+id/cbrp" 
  68.    android:text="記住密碼" android:textSize="12px"></CheckBox> 
  69.   <CheckBox android:layout_width="wrap_content" 
  70.    android:layout_height="wrap_content" android:id="@+id/cbal" 
  71.    android:text="自動登錄" android:textSize="12px"></CheckBox> 
  72.  </LinearLayout> 
  73. </LinearLayout> 

java代碼

  1. package com.wjq;  
  2.  
  3. import android.app.Activity;  
  4. import android.content.Context;  
  5. import android.content.SharedPreferences;  
  6. import android.os.Bundle;  
  7. import android.util.Log;  
  8. import android.view.Display;  
  9. import android.view.View;  
  10. import android.view.View.OnClickListener;  
  11. import android.widget.Button;  
  12. import android.widget.CheckBox;  
  13. import android.widget.CompoundButton;  
  14. import android.widget.EditText;  
  15. import android.widget.TextView;  
  16. import android.widget.Toast;  
  17.  
  18. import com.wjq.beans.User;  
  19. import com.wjq.func.UserMgr;  
  20.  
  21. public class Login extends Activity {  
  22.  private EditText etAccount;  
  23.  private EditText etPW;  
  24.  private Button btnLogin;  
  25.  private Button btnExit;  
  26.  private CheckBox cbrp;  
  27.  private CheckBox cbal;  
  28.  private UserMgr userMgr;  
  29.  private User user;  
  30.  private SharedPreferences sp;  
  31.  private TextView tvClear;  
  32.  
  33.  /*  
  34.   * (non-Javadoc)  
  35.   *   
  36.   * @see android.app.Activity#onCreate(android.os.Bundle)  
  37.   */ 
  38.  @Override 
  39.  protected void onCreate(Bundle savedInstanceState) {  
  40.   // TODO Auto-generated method stub  
  41.   super.onCreate(savedInstanceState);  
  42.  
  43.   setContentView(R.layout.login);  
  44.  
  45.   etAccount = (EditText) findViewById(R.id.etaccount);  
  46.   etPW = (EditText) findViewById(R.id.etpw);  
  47.   cbrp = (CheckBox) findViewById(R.id.cbrp);  
  48.   cbal = (CheckBox) findViewById(R.id.cbal);  
  49.   btnLogin = (Button) findViewById(R.id.btnlogin);  
  50.   btnExit = (Button) findViewById(R.id.btnexit);  
  51.   tvClear=(TextView)findViewById(R.id.tvclear);  
  52.  
  53.   InitConfig();  
  54.   cbrp  
  55.     .setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {  
  56.  
  57.      @Override 
  58.      public void onCheckedChanged(CompoundButton buttonView,  
  59.        boolean isChecked) {  
  60.       sp = getSharedPreferences("UserInfo", 0);  
  61.       sp.edit().putBoolean("cbrp", isChecked).commit();  
  62.      }  
  63.  
  64.     });  
  65.  
  66.   cbal  
  67.     .setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {  
  68.  
  69.      @Override 
  70.      public void onCheckedChanged(CompoundButton buttonView,  
  71.        boolean isChecked) {  
  72.       sp = getSharedPreferences("UserInfo", 0);  
  73.       sp.edit().putBoolean("cbal", isChecked).commit();  
  74.      }  
  75.  
  76.     });  
  77.   btnLogin.setOnClickListener(new OnClickListener() {  
  78.  
  79.    @Override 
  80.    public void onClick(View v) {  
  81.     user = new User(etAccount.getText().toString(), etPW.getText()  
  82.       .toString());  
  83.  
  84.     Log.i("tag", "Account:" + etAccount.getText().toString());  
  85.     Log.i("tag", "Password:" + etPW.getText().toString());  
  86.  
  87.     userMgr = new UserMgr();  
  88.     Boolean flag = userMgr.CheckUser(user, Login.this);  
  89.  
  90.     if (!flag) {  
  91.      Toast.makeText(Login.this, "用戶驗證錯誤!", 1000).show();  
  92.     }  
  93.  
  94.     else {  
  95.      if (cbrp.isChecked()) {  
  96.        sp = getSharedPreferences("UserInfo",  
  97.         Context.MODE_WORLD_WRITEABLE  
  98.           | Context.MODE_WORLD_READABLE);  
  99.         
  100.       sp.edit().putString("account",  
  101.         etAccount.getText().toString()).commit();  
  102.       sp.edit().putString("password",  
  103.         etPW.getText().toString()).commit();  
  104.      }  
  105.     }  
  106.    }  
  107.  
  108.   });  
  109.  
  110.   btnExit.setOnClickListener(new OnClickListener() {  
  111.  
  112.    @Override 
  113.    public void onClick(View v) {  
  114.     System.exit(0);  
  115.    }  
  116.   });  
  117.     
  118.   tvClear.setOnClickListener(new OnClickListener(){  
  119.  
  120.    @Override 
  121.    public void onClick(View v) {sp=getSharedPreferences("UserInfo", 0);  
  122.       
  123.     sp.edit().clear().commit();  
  124.    }});  
  125.  }  
  126.  
  127.    
  128.  
  129. //初始化配置  
  130.  
  131.  private void InitConfig() {  
  132.   sp = getSharedPreferences("UserInfo", 0);  
  133.   etAccount.setText(sp.getString("account", null));  
  134.   etPW.setText(sp.getString("password", null));  
  135.   cbal.setChecked(sp.getBoolean("cbal", false));  
  136.   cbrp.setChecked(sp.getBoolean("cbrp", false));  
  137.  }  
  138. }  
  139.  

 

說明

1.寫內容

 sp = getSharedPreferences("UserInfo", 0);
      sp.edit().putBoolean("cbal", isChecked).commit();
     UserInfo是指xml文件的文件名,如果此文件已存在則直接向其中寫內容“isChecked”的值,首先通過SharedPreferences的edit()方法創建editor,然後調用commit()方法提修改

 

2.讀內容

 

  1. sp = getSharedPreferences("UserInfo", 0);  
  2.   etAccount.setText(sp.getString("account", null));  
  3.   etPW.setText(sp.getString("password", null));  
  4.   cbal.setChecked(sp.getBoolean("cbal", false));  
  5.   cbrp.setChecked(sp.getBoolean("cbrp", false));  
  6.  

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved