Start Android Market from App

前端 未结 3 1725
渐次进展
渐次进展 2020-12-28 22:22

I\'m developing a lite version for an app on the Android. How can I start an Intent to open the Android Market, preferably with the full version of my app displayed? This is

3条回答
  •  情话喂你
    2020-12-28 22:51

    That query above works, but when I tried it, it looked like it was bringing up search results based on the name.

    If you use something like

    intent.setData(Uri.parse("market://details?id=com.wolinlabs.SuperScorepad")); 
    

    instead, it will go right to the Android Market page for your app.

    I think that's more what you wanted (?)

提交回复
热议问题