若是使用SharedPreferences用於數據存取,大部分人喜歡使用以下代碼: 進程
public void writeSharedprefs(int pos) {
SharedPreferences preferences = getApplicationContext().getSharedPreferences("info", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = preferences.edit();
editor.putInt("t1", t1);
editor.commit();
}
public int writeSharedprefs() {
SharedPreferences preferences = getApplicationContext().getSharedPreferences("info", Context.MODE_PRIVATE);
int pos = preferences.getInt("t1", 0);
return pos;
} get
但不少人忽略了一點,就是跨進程使用的時候,你就會發現從SharedPreferences讀出來的數據永遠都是第一次寫入的數據。 舉例,例如播放器是一個獨立進程,另外某個Activity是另外一個獨立進程,播放器與這個Activity利用SharedPreferences通訊的時候,若是使用MODE_PRIVATE操做模式,就會出錯。 it
因此,若是跨進程使用SharedPreferences的使用,須要使用MODE_MULTI_PROCESS模式,代碼以下:
public void writeSharedprefs(int pos) {
SharedPreferences preferences = getApplicationContext().getSharedPreferences("info", Context.MODE_MULTI_PROCESS);
SharedPreferences.Editor editor = preferences.edit();
editor.putInt("t1", t1);
editor.commit();
}
public int writeSharedprefs() {
SharedPreferences preferences = getApplicationContext().getSharedPreferences("test", Context.MODE_MULTI_PROCESS);
int t1 = preferences.getInt("t1", 0);
return pos;
} io