歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android之用SharedPreferences來添加用戶偏好

SharedPreferences來設置用戶偏好

記錄用戶最近一次在程序中輸入的內容 SharedPreferences的應用
Activity中提供了一個函數getPreferences(int mode),用來返回SharedPreferencess對象,該方法會調用 

getSharedPreferences(String, int)
參數的含義:
MODE_PRIVATE (0)是默認的操作
MODE_WORLD_READABLE (1),MODE_WORLD_WRITEABLE (2)用來控制
對於任何的preferences對象,都只有一個實例,被多有的客戶共享的
SharedPreferences.Editor 對象是用來對當前保存的內容進行修改並且存儲的。

在程序中保存的數據是存放在data/data/ 你的packages/shared_prefs/PersistentState.xml文件中 默認的保存文件名是PersistentState.xml
如果需要自定義保存文件的名字,則可以用Activity中提供的另外一個方法getSharedPreferences("name",0);
如下面的例子
  1. 在onResume()方法恢復保存的用戶數據  
  2.     SharedPreferences prefs = getPreferences(0);   
  3.         String restoredText = prefs.getString("text"null);  
  4.         if (restoredText != null) {  
  5.             mSaved.setText(restoredText, TextView.BufferType.EDITABLE);  
  6.               
  7.             //設置光標位置   
  8.             int selectionStart = prefs.getInt("selection-start", -1);  
  9.             int selectionEnd = prefs.getInt("selection-end", -1);  
  10.             if (selectionStart != -1 && selectionEnd != -1) {  
  11.                 mSaved.setSelection(selectionStart, selectionEnd);  
  12.             }  
  13. 在onPause()方法中保存當前用戶的數據  
  14.         SharedPreferences.Editor editor = getPreferences(0).edit();  
  15.         editor.putString("text", mSaved.getText().toString());  
  16.         editor.putInt("selection-start", mSaved.getSelectionStart());  
  17.         editor.putInt("selection-end", mSaved.getSelectionEnd());  
  18.         editor.commit();  
上面是用來保存用戶偏好的 同樣,在SharedPreferences.Editor中提供了清楚保存數據的方法 clear()用來刪除所有的 數據
remove(String key)用來根據保存的鍵值進行刪除 這兩個函數都返回的是是SharedPreferences.Editor  在返回以後,需要commit()
Copyright © Linux教程網 All Rights Reserved