如何从您的应用中打开Google Settings
,以便用户可以启用Notifications for Google Play Services
来接收多人网络游戏的邀请?
Google Settings -> Play Games -> Notifications
(允许游戏发送请求和通知)
答案 0 :(得分:1)
答案:
String action = "com.google.android.gms.location.settings.GOOGLE_LOCATION_SETTINGS";
Intent settings = new Intent(action);
startActivity(settings);
研究:
不幸的是,这个动作似乎没有在任何地方发布。但是,使用apktool从APK中提取AndroidManifest.xml文件非常简单。我这样做了,发现活动声明包括我们正在寻找的活动的意图过滤器:com.google.android.location.settings.GoogleLocationSettingsActivity。
万。 :)
答案 1 :(得分:0)
我找到了答案:
Intent settings = new Intent();
settings.setPackage("com.google.android.gms");
settings.addCategory(Intent.CATEGORY_LAUNCHER);
starrtActivity(settings);