如何通过使用意图或其他方式更改首选项屏幕布局,从我的应用程序访问其他应用程序首选项屏幕实现。是否可以获得首选项的实现,因为我们必须根据首选项值更改布局
请帮助我。
问候蒂拉格。
如何通过使用意图或其他方式更改首选项屏幕布局,从我的应用程序访问其他应用程序首选项屏幕实现。是否可以获得首选项的实现,因为我们必须根据首选项值更改布局
请帮助我。
问候蒂拉格。
i do it once with a sharedUserID, you have to give both applications the same SharedID in the Manifest.xml
set the sharedUserID in both Manifest.xml
, set it like in this link
your code should look like this:
SharedPreferences prefs = con.getSharedPreferences("PrefsFromOtherApk",Context.MODE_WORLD_WRITEABLE);
final Editor edit = prefs.edit();
edit.putBoolean("SomeBoolValue", true);
edit.commit();