How to implement Rate It feature in Android App(如何在 Android App 中实现 Rate It 功能)
问题描述
我正在开发一个 Android 应用程序.其中一切正常.我的应用程序已准备好启动.但是我需要再实现一项功能.我需要显示一个弹出窗口,其中包含
I am developing an Android App. In which everything is working right. My app is ready to launch. But there I need to implement one more feature. I need to display a popup that contains
评分
和稍后提醒我
在这里,如果任何用户对市场上的应用程序进行评分,则弹出窗口不会消失.我在 Google 中搜索并找到了一个 链接.有了这个,我明白这是不可能知道的.所以我需要一个建议.
Here if any user rates the app in the market then the popup won't be disappeared. I have searched in Google and found one link. With this, I understand that it's not possible to know. So I need a suggestion for this.
以前有人遇到过这种情况吗?如果是这样,是否有任何解决方案或替代方案?
Has anybody faced this situation before? If so, is there any solution or any alternative for this?
推荐答案
在某种程度上我实现了这个.无法知道用户是否对应用进行了评分,以防止评分成为货币(一些开发人员可能会添加评价此应用并在应用中免费获得某某"之类的选项).
I implemented this a while back, to some extent. It is impossible to know whether or not a user has rated an app, to prevent ratings from becoming a currency (some developers might add an option like "Rate this app and get so and so in the app for free").
我编写的类提供了三个按钮,并配置了对话框,使其仅在应用程序启动 n
次后显示(如果用户已经之前用过一点.他们中的大多数人甚至不太可能知道它在第一次运行时会做什么):
The class I wrote provides three buttons, and configures the dialog so that it is only shown after the app has been launched n
times (users have a higher chance of rating the app if they've used it a bit before. Most of them are unlikely to even know what it does on the first run):
集成类就像添加一样简单:
Integrating the class is as simple as adding:
到您的活动.只需要添加到整个应用中的一个Activity即可.
To your Activity. It only needs to be added to one Activity in the entire app.
这篇关于如何在 Android App 中实现 Rate It 功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!