如何在 Android 市场中从免费应用程序链接到付费应用程序?
如果我在 Android 市场上有付费应用程序的免费版本,如何在免费应用程序中放置一个按钮来打开市场中的付费版本?
If I have a free version of a paid app in the Android market how can I place a button in the free app that opens the paid version in the market?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
更好的是使用“market://details”而不是“market://search”:
然后它会直接打开应用程序的详细信息页面。通过搜索,它会显示单个搜索结果,用户必须额外单击才能进入详细信息页面。
Even better to use "market://details" instead of "market://search":
Then it opens directly the details page of the app. With search it shows a single search result and the user has to do an additional click to get to the detail page.
将其添加到按钮的 OnClickListener 的 onClick 方法中:
将
uk.co.ashtonbrsc
替换为可找到您的应用的搜索词。Add this to the button's OnClickListener's onClick method:
Replacing
uk.co.ashtonbrsc
with a search term that will find your app.