我正在尝试SharedPreferences
通过另一个应用程序编辑一个应用程序,我的代码是这样的
try {
Context plutoContext = getApplicationContext().createPackageContext("me.test",Context.MODE_WORLD_WRITEABLE);
SharedPreferences plutoPreferences = PreferenceManager.getDefaultSharedPreferences(plutoContext);
Editor plutoPrefEditor = plutoPreferences.edit();
plutoPrefEditor.putString("country", "India");
plutoPrefEditor.commit();
}
我收到一个错误
E/SharedPreferencesImpl( 304): Couldn't create directory for SharedPreferences file /data/data/me.test/shared_prefs/me.test_preferences.xml
我在me.test
me.test 项目中的另一个项目在哪里我可以轻松地编辑和检索SharedPreferences
我正在 Nexus S android 4.0.4 (Samsung) 上对其进行测试,任何人都可以帮助我