How to launch the Google Play intent in #39;Give Feedback#39; mode on Android?(如何在 Android 上以“提供反馈模式启动 Google Play 意图?)
问题描述
我刚刚为 Google Play 商店写了一个游戏,想提醒我客户对应用程序(尤其是演示版)的市场反馈.有没有什么方法可以在将用户带到页面的反馈/评论部分的模式下启动市场意图?
I have just written a game for the Google Play Store and would like to remind my customers to leave feedback on the market for the application (especially the demo version). Is there any way to launch the market intent in a mode that will take the user to the feedback / comments section of the page?
我已经使用这种方法将我的演示链接到付费应用程序...
I already use this approach for linking my demo to the paid application...
Intent goToMarket = null;
goToMarket = new Intent(
Intent.ACTION_VIEW,
Uri.parse("market://details?id=com.paulmaidment.games.flagsoftheworld"));
startActivity(goToMarket);
有最佳实践吗?
此外,是否有任何方法可以跟踪来自我的演示应用程序的推荐,以便我可以尝试计算某种转化率?(也就是说,演示应用程序在产生销售方面的效果如何.)
Additionally, is there any way to track referrals from my demo application so that I can try to calculate some kind of a conversion rate? (that is, how effective the demo application is at generating sales.)
推荐答案
我不确定是否有可能将用户直接带入反馈/评论部分.开发者指南没有提到这种可能性.
I'm not sure if its possible for an intent to take a user directly into the feedback/comments section. The developer guide does not mention that possibility.
关于跟踪推荐,您可能需要查看此http://code.google.com/mobile/analytics/docs/android/#android-market-tracking
As for tracking referrals you might want to check out this http://code.google.com/mobile/analytics/docs/android/#android-market-tracking
这篇关于如何在 Android 上以“提供反馈"模式启动 Google Play 意图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Android 上以“提供反馈"模式启动 Google Play 意图?
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01