Android中不同应用间实现SharedPreferences数据共享

在Android中使用下面的Code可以实现两个应用之间的SharedPreferences数据共享,但前提是要保证两个应用的android:sharedUserId要相同

	Context context = null; 
	try {
		context=createPackageContext("com.android.providers.downloads",Context.CONTEXT_IGNORE_SECURITY);
	} catch (NameNotFoundException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}
	SharedPreferences mPrefs = context.getSharedPreferences("com.android.providers.downloads.save_preference",
                0);
	boolean onlyWifi = mPrefs.getBoolean("download_only_wifi",
                false);


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。