如何从我的Android应用程序中直接打开GooglePlay商店?我使用以下代码打开了GooglePlay商店Intent i = new Intent(android.content.Intent.ACTION_VIEW);i.setData(Uri.parse("https://play.google.com/store/apps/details?id=my packagename "))
;startActivity(i);.但是它显示了一个完整的操作视图来选择选项(Browser/Play Store)。我需要直接打开Play Store中的应用程序。
3 回答
撒科打诨
TA贡献1934条经验 获得超2个赞
Android开发者官方链接
链接到应用程序页
http://play.google.com/store/apps/details?id=<package_name>
market://details?id=<package_name>
链接到产品列表
http://play.google.com/store/search?q=pub:<publisher_name>
market://search?q=pub:<publisher_name>
链接到搜索结果
http://play.google.com/store/search?q=<search_query>&c=apps
market://search?q=<seach_query>&c=apps
- 3 回答
- 0 关注
- 3281 浏览
添加回答
举报
0/150
提交
取消