如何以编程方式打开Android Play商店设置页面

时间:2013-07-23 10:51:28

标签: android android-intent google-play-services

我想打开Play商店设置页面。虽然我知道如何打开游戏商店

final String appName = "";
        try {
            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id="+appName)));
        } catch (android.content.ActivityNotFoundException anfe) {
            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id="+appName)));
    }
  

但我想打开播放商店设置(将用户重定向到自动更新   选项)页面看起来像这个图像

enter image description here

如何做到这一点。对此有何意图?

2 个答案:

答案 0 :(得分:5)

你可以这样做:

try {
      Intent intent = new Intent("com.google.android.finsky.activities.SettingsActivity");
      intent.setClassName("com.android.vending", "com.google.android.finsky.activities.SettingsActivity");
      startActivity(intent);
    }
    catch(Exception e) {
      e.printStackTrace();
    }

答案 1 :(得分:3)

您可以使用App Intent Intercept查找PlayStore设置活动的意图。

我想你可以运行应用程序开始跟踪,然后打开PlayStore并转到设置。 Intent Intercept应该显示被调用的Intents。