Android SharedPreferences的使用

 

SharedPreferences是Android平臺上一個輕量級的存儲類,主要是保存一些經常使用的配置好比窗口狀態,通常在Activity中 重載窗口狀態onSaveInstanceState保存通常使用SharedPreferences完成,它提供了Android平臺常規的Long長 ×××、Int×××、String字符串型的保存,它是什麼樣的處理方式呢?SharedPreferences相似過去Windows系統上的ini配置文件,可是它分爲多種權限,能夠全局共享訪問,android123提示最 終是以xml方式來保存,總體效率來看不是特別的高,對於常規的輕量級而言比SQLite要好很多,若是真的存儲量不大能夠考慮本身定義文件格式。xml 處理時Dalvik會經過自帶底層的本地XML Parser解析,好比XMLpull方式,這樣對於內存資源佔用比較好。java

這種方式應該是用起來最簡單的Android讀寫外部數據的方法了。他的用法基本上和 J2SE(java.util.prefs.Preferences)中的用法同樣,以一種簡單、 透明的方式來保存一些用戶個性化設置的字體、顏色、位置等參數信息。通常的應用程序都會提供「設置」或者「首選項」的這樣的界面,那麼這些設置最後就能夠 經過Preferences來保存,而程序員不須要知道它到底以什麼形式保存的,保存在了什麼地方。固然,若是你願意保存其餘的東西,也沒有什麼限制。只 是在性能上不知道會有什麼問題。android

在Android系統中,這些信息以XML文件的形式保存在 /data/data/PACKAGE_NAME /shared_prefs 目錄下。程序員

package com.cloay;
import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.EditText;
import android.widget.ImageButton;
/**
 * 
 * MySharedPreferencesActivity.java
 * @author cloay
 * 2011-10-18
 */
public class MySharedPreferencesActivity extends Activity {
private EditText user = null;
private EditText password = null;
private ImageButton loginBtn = null;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        user = (EditText)findViewById(R.id.user);
        password = (EditText)findViewById(R.id.pass);
        loginBtn = (ImageButton)findViewById(R.id.loginButton);
        initView();
        loginBtn.setOnTouchListener(new OnTouchListener(){
@Override
public boolean onTouch(View v, MotionEvent event) {
if(event.getAction()==MotionEvent.ACTION_DOWN){
v.setBackgroundResource(R.drawable.dengluxitong1);
SharedPreferences userInfo = getSharedPreferences("user_info", 0);
userInfo.edit().putString("name", user.getText().toString()).commit();
userInfo.edit().putString("pass", password.getText().toString()).commit();
}
else if(event.getAction()==MotionEvent.ACTION_UP){
v.setBackgroundResource(R.drawable.dengluxitong);
}
return false;
}
        
        });
    }
private void initView() {
SharedPreferences userInfo = getSharedPreferences("user_info", 0);
String username = userInfo.getString("name", "");
String pass = userInfo.getString("pass", "");
user.setText(username);
password.setText(pass);
}
}

SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
經過名稱,獲得一個SharedPreferences,顧名思義,這個Preferences是共享的,共享的範圍據如今同一個Package中,這裏 面說所的Package和Java裏面的那個Package不一樣,貌似這裏面的Package是指在AndroidManifest.xml文件中的app

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.cloay"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="8" />
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".MySharedPreferencesActivity"
                  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>

佈局文件以下:ide


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<EditText android:layout_width="185dp" android:id="@+id/user"
android:layout_height="40dp" android:hint="請輸入用戶名"
android:singleLine="true" android:layout_alignParentTop="true"
android:layout_alignLeft="@+id/pass" android:layout_marginTop="66dp">
<requestFocus></requestFocus>
</EditText>
<EditText android:inputType="textPassword"
android:layout_width="185dp" android:id="@+id/pass"
android:layout_height="40dp" android:hint="請輸入密碼" android:singleLine="true"
android:layout_below="@+id/user" android:layout_centerHorizontal="true"
android:layout_marginTop="44dp">
</EditText>
<ImageButton android:layout_height="40dp"
android:layout_width="80dp" android:id="@+id/loginButton"
android:background="@drawable/dengluxitong"
android:layout_centerVertical="true" android:layout_alignRight="@+id/pass"
android:layout_marginRight="17dp"></ImageButton>
</RelativeLayout>
佈局

運行結果以下,首次顯示的時空白,第二次運行時以下:性能

http://blog.csdn.net/cloay/article/details/6884635 字體

相關文章
相關標籤/搜索