Android Market application Url?

早过忘川 提交于 2019-12-30 05:54:08

问题


Is there right way to get Url to android market app ? I read some answer here but I did not success to get any ?


回答1:


For phones:

market://search?q=pname:[name of your package here]

For example:

market://search?q=pname:net.mandaria.tippytipper

For non-phones: You'll need to link to an Android Market aggregator such as appbrain:

http://www.appbrain.com/app/net.mandaria.tippytipper



回答2:


Bryan's market url will work, but I prefer:

market://details?id=com.example.your.package

since it will take you directly to the details page.




回答3:


This should work as a standard HTML anchor tag:

https://market.android.com/search?q=pname:[name of your package here]

IE: https://market.android.com/search?q=pname:com.google.earth

Similar to Bryan Denny's answer on 10/29/2010, but in regular URL format, and not the special "market://" style link.




回答4:


See http://developer.android.com/distribute/googleplay/promote/linking.html

Basically, from a web site use: http://play.google.com/store/apps/details?id=<package_name>

From an android app use: market://details?id=<package_name>




回答5:


the apps are hosted on their own sites. you can download the apps from your android mobile by visiting the market place.




回答6:


https://market.android.com/details?id=com.somecompany.someapp

replace com.somecompany.someapp with your app package




回答7:


Example for Apps details page:

If you go https://market.android.com/details?id=com.somecompany.someapp its redirect to google play store https://play.google.com/store/apps/details?id=com.somecompany.someapp



来源:https://stackoverflow.com/questions/4055245/android-market-application-url

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!