3

我想打开 Play 商店设置页面。虽然我知道如何打开 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)));
    }

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

在此处输入图像描述

怎么做。这有什么意图吗?

4

2 回答 2

6

你可以这样做:

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();
    }
于 2016-11-10T14:50:22.340 回答
2

您可以使用 App Intent Intercept来查找 PlayStore Settings-Activity 的 Intent。

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

于 2013-07-23T11:10:06.120 回答