简体   繁体   English

Android:如何直接进入Play商店中应用的下载页面

[英]Android : How to directly go to the download page of an app in play store

I know its possible from the web URL to directly go to the download page of the app by using this URL : 我知道可以从Web URL使用以下URL直接转到应用程序的下载页面:

https://play.google.com/store/apps/details?id=<package_name>&rdid=<package_name>

I wanted to know if there is a similar trick for the mobile version of the Play Store? 我想知道Play商店的移动版是否有类似的窍门? So when I click the 'Download App' button from my app it directly goes to the 'Accept & Download' page for the target app. 因此,当我从应用程序中单击“下载应用程序”按钮时,它将直接转到目标应用程序的“接受并下载”页面。

单击该按钮后,将操作设置为操作视图并使用URI的市场方案来启动一个意图:

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=<package_name>")));

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM