操作SharedPreferences的注意点

如果使用SharedPreferences用于数据存取,大部分人喜欢使用如下代码:

 

	public void writeSharedprefs(int pos) {

		SharedPreferences preferences = getApplicationContext().getSharedPreferences("test", Context.MODE_PRIVATE);
		SharedPreferences.Editor editor = preferences.edit();
		editor.putInt("pos", pos);
		editor.commit();

	}

	public int writeSharedprefs() {
		SharedPreferences preferences = getApplicationContext().getSharedPreferences("test", Context.MODE_PRIVATE);
		int pos = preferences.getInt("pos", 0);
		return pos;
	}

 

但很多人忽略了一点,就是跨进程使用的时候,你就会发现从SharedPreferences读出来的数据永远都是第一次写入的数据。 举例,例如播放器是一个独立进程,另外某个Activity是另一个独立进程,播放器与这个Activity利用SharedPreferences通信的时候,如果使用MODE_PRIVATE操作模式,就会出错。

 

所以,如果跨进程使用SharedPreferences的使用,需要使用MODE_MULTI_PROCESS模式,代码如下:

	public void writeSharedprefs(int pos) {

		SharedPreferences preferences = getApplicationContext().getSharedPreferences("test", Context.MODE_MULTI_PROCESS);
		SharedPreferences.Editor editor = preferences.edit();
		editor.putInt("pos", pos);
		editor.commit();

	}

	public int writeSharedprefs() {
		SharedPreferences preferences = getApplicationContext().getSharedPreferences("test", Context.MODE_MULTI_PROCESS);
		int pos = preferences.getInt("pos", 0);
		return pos;
	}

 

    原文作者:philofly
    原文地址: https://blog.csdn.net/philofly/article/details/8588807
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞