我想打开 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 商店设置(将用户重定向到自动更新选项)页面
怎么做。这有什么意图吗?