【发布时间】:2013-07-23 10:51:28
【问题描述】:
我想打开 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 商店设置(将用户重定向到自动更新 选项)看起来像这张图片的页面
如何做到这一点。有什么意图吗?
【问题讨论】:
标签: android android-intent google-play-services