4

如何Google Settings从您的应用程序打开,以便用户可以Notifications for Google Play Services接收多人网络游戏的邀请? Google Settings -> Play Games -> Notifications(允许游戏发送请求和通知)

4

2 回答 2

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。

魔法。:)

于 2014-11-16T17:20:00.850 回答
0

我找到了答案:

   Intent settings = new Intent();
   settings.setPackage("com.google.android.gms");
   settings.addCategory(Intent.CATEGORY_LAUNCHER);
   starrtActivity(settings);
于 2013-08-02T18:28:08.717 回答