如何在 Android 市场中从免费应用程序链接到付费应用程序?

发布于 2024-08-09 13:32:04 字数 64 浏览 2 评论 0原文

如果我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坦然微笑 2024-08-16 13:32:04

更好的是使用“market://details”而不是“market://search”:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.android.example"));
startActivity(intent);

然后它会直接打开应用程序的详细信息页面。通过搜索,它会显示单个搜索结果,用户必须额外单击才能进入详细信息页面。

Even better to use "market://details" instead of "market://search":

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://details?id=com.android.example"));
startActivity(intent);

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.

别闹i 2024-08-16 13:32:04

将其添加到按钮的 OnClickListener 的 onClick 方法中:

Intent marketLaunch = new Intent(Intent.ACTION_VIEW);
marketLaunch.setData(Uri.parse("market://search?q=uk.co.ashtonbrsc"));
startActivity(marketLaunch);

uk.co.ashtonbrsc 替换为可找到您的应用的搜索词。

Add this to the button's OnClickListener's onClick method:

Intent marketLaunch = new Intent(Intent.ACTION_VIEW);
marketLaunch.setData(Uri.parse("market://search?q=uk.co.ashtonbrsc"));
startActivity(marketLaunch);

Replacing uk.co.ashtonbrsc with a search term that will find your app.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文