如何通过使用intent或更改首选项屏幕布局,从我的应用程序访问其他应用程序首选项屏幕实现。是否有可能实现偏好的原因,因为我们必须根据偏好值
更改布局请帮助我。
此致 Thilag。
答案 0 :(得分:1)
我使用sharedUserID执行一次,您必须在Manifest.xml
在Manifest.xml
中设置sharedUserID,将其设置为此link
您的代码应如下所示:
SharedPreferences prefs = con.getSharedPreferences("PrefsFromOtherApk",Context.MODE_WORLD_WRITEABLE);
final Editor edit = prefs.edit();
edit.putBoolean("SomeBoolValue", true);
edit.commit();