Androidでのデータアクセス方式の1つ:Preference(構成)


この方法は、最も簡単なAndroidで外部データを読み書きする方法であるはずです.彼の使い方は基本的にJ 2 SE(java.util.prefs.Preferences)の使い方と同じで、ユーザーがカスタマイズしたフォント、色、位置などのパラメータ情報を簡単で透明な方法で保存します.一般的なアプリケーションでは、「設定」や「プリファレンス」というインタフェースが提供されています.これらの設定は最後にPreferencesで保存できますが、プログラマーはどのような形式で保存されているのか、どこに保存されているのかを知る必要はありません.もちろん、他のものを保存したいなら、制限はありません.ただ、性能的には何が問題なのか分かりません.
Androidシステムでは、これらの情報はXMLファイルとして/data/data/PCMAGE_に保存されています.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");
このコードでは、SharedPreferencessettings=getSharedPreferences(PREFS_NAME,0);
名称を通じて、SharedPreferencesを得て、その名の通り、このPreferencesは共有して、共有の範囲は今同じPackageの中で、この中で言うPackageはJavaの中のあのPackageとは違って、この中のPackageはAndroidManifestを指すようです.xmlファイル:
 package="com.roiding.sample.note" 
 android:versionCode="1" 
 android:versionName="1.0.0">
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();
上のデータが読み取ったコードがあれば、この中のコードは分かりやすくなりますが、最後のcommit()を忘れないでください.
例:
Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.preference.test"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="14" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".PreferenceTestActivity"
            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>

</manifest>

main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Preference Test" />

    <EditText
        android:id="@+id/EditText01"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:height="180px"
        android:text="" >
    </EditText>

    <Button
        android:id="@+id/Button01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Send" >
    </Button>

</LinearLayout>

PreferenceTestActivity.java
package com.preference.test;

import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.widget.Button;
import android.widget.EditText;

public class PreferenceTestActivity extends Activity {
	private EditText myEditText;
	private Button myBtn;
	public static final String SEND_SMS = "temp_sms";
	
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        myEditText = (EditText)findViewById(R.id.EditText01);
        myBtn = (Button)findViewById(R.id.Button01);
        
        SharedPreferences pre = getSharedPreferences(SEND_SMS, MODE_WORLD_READABLE);
        String content = pre.getString("sms_context", "");
        myEditText.setText(content);
    }

	@Override
	protected void onStop() {
		// TODO Auto-generated method stub
		super.onStop();
		SharedPreferences.Editor editor = getSharedPreferences(SEND_SMS, MODE_WORLD_READABLE).edit();
		editor.putString("sms_context", myEditText.getText().toString());
		editor.commit();
	}
    
    
}

この例では、PreferenceTestActivityに進むと、編集できるEditTextがあります.ホームキーでActivityを押した後、そのActivityに入り、保存した内容が失われることはありません.これらの内容はちょうどpreferenceに保存されています.