這種方式應該是用起來最簡單的Android讀寫外部資料的方法了。他的用法基本上和J2SE(java.util.prefs.Preferences)中的用法一樣,以一種簡單、 透明的方式來儲存一些使用者個人化的字型、顏色、位置等參數資訊。一般的應用程式都會提供“設定”或者“喜好設定”的這樣的介面,那麼這些設定最後就可以 通過Preferences來儲存,而程式員不需要知道它到底以什麼形式儲存的,儲存在了什麼地方。當然,如果你願意儲存其他的東西,也沒有什麼限制。只是在效能上不知道會有什麼問題。
在Android系統中,這些資訊以XML檔案的形式儲存在 /data/data/PACKAGE_NAME/shared_prefs 目錄下。
資料讀取
- String PREFS_NAME = "Note.sample.roiding.com";
- SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
- boolean silent = settings.getBoolean("silentMode", false);
- String hello = settings.getString( "hello", "Hi");
String PREFS_NAME = "Note.sample.roiding.com";SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);boolean silent = settings.getBoolean("silentMode", false);String hello = settings.getString("hello", "Hi");
這段代碼中:
- SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
通過名稱,得到一個SharedPreferences,顧名思義,這個Preferences是共用的,共用的範圍據現在同一個Package中,這裡面說所的Package和Java裡面的那個Package不同,貌似這裡面的Package是指在AndroidManifest.xml檔案中:
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.roiding.sample.note"
- android:versionCode="1"
- android:versionName="1.0.0">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.roiding.sample.note"android:versionCode="1"android:versionName="1.0.0">
這裡面的package。根據我目前的實驗結果看,是這樣的,歡迎指正。後面的那個int是用來聲明讀寫入模式,先不管那麼多了,暫時就知道設為0(android.content.Context.MODE_PRIVATE)就可以了。
- boolean silent = settings.getBoolean(”silentMode”, false);
獲得一個boolean值,這裡就會看到用Preferences的好處了:可以提供一個預設值。也就是說如果Preference中不存在這個值的話,那麼就用後面的值作為返回指,這樣就省去了我們的if什麼什麼為空白的判斷。
資料寫入
- String PREFS_NAME = "Note.sample.roiding.com";
- SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
- SharedPreferences.Editor editor = settings.edit();
- editor.putBoolean("silentMode", true);
- editor.putString("hello", "Hello~");
- editor.commit();
String PREFS_NAME = "Note.sample.roiding.com";SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);SharedPreferences.Editor editor = settings.edit();editor.putBoolean("silentMode", true);editor.putString("hello", "Hello~");editor.commit();
有了上面資料讀取的代碼,這裡面的就容易理解了,只是別忘了最後的commit();
執行個體:
/Chapter09_Data_01/src/com/amaker/test/MainActivity.java
代碼
package com.amaker.test;
import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity {
private EditText myEditText;
private Button b1;
private static final String TEMP_SMS="temp_sms";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
myEditText = (EditText)findViewById(R.id.EditText01);
b1 = (Button)findViewById(R.id.Button01);
SharedPreferences pre = getSharedPreferences(TEMP_SMS, MODE_WORLD_READABLE);
String content = pre.getString("sms_content", "");
myEditText.setText(content);
}
@Override
protected void onStop() {
super.onStop();
SharedPreferences.Editor editor = getSharedPreferences(TEMP_SMS, MODE_WORLD_WRITEABLE).edit();
editor.putString("sms_content", myEditText.getText().toString());
editor.commit();
}
}
/Chapter09_Data_01/res/layout/main.xml
代碼
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Preference Test"/>
<EditText
android:text=""
android:id="@+id/EditText01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:height="180px"
></EditText>
<Button android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Send"></Button>
</LinearLayout>
/Chapter09_Data_01/AndroidManifest.xml
代碼
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.amaker.test"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="3" />
</manifest>