在应用程序中对 Android 应用程序进行评级

发布于 2024-12-05 01:39:47 字数 140 浏览 2 评论 0原文

我正在尝试提供允许用户从我的应用程序中对我的应用程序进行评分的功能。我并不是专注于通常的android市场指向然后去做。相反,我希望我的应用程序有直接评级系统。

我很确定这可以在 iPhone 上完成,但是有人知道在 Android 上可以做什么吗?

I am trying to have the functionality where I can allow the users to rate my app from my application. I am not concentrating on the usual android market pointing and then doing it. Instead I want my application to have direct rating system.

I am pretty sure that this can be done i iPhone, but any one knows to do in android?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

隐诗 2024-12-12 01:39:47

这就是我们对应用程序进行评级的方式,即 Android 官方网站中建议的应用程序。

  Intent intent = new Intent(Intent.ACTION_VIEW);
  intent.setData(Uri.parse("market://details?id=com.test(This is the package name)"));
  startActivity(intent);

This is how we can rate an app, the one suggested in the android official site.

  Intent intent = new Intent(Intent.ACTION_VIEW);
  intent.setData(Uri.parse("market://details?id=com.test(This is the package name)"));
  startActivity(intent);
小傻瓜 2024-12-12 01:39:47

应用程序无法对自己进行评分,只有用户可以这样做;这种方法减少了滥用行为。
应用程序通常会要求他们前往 Android Market 进行评分,因为这样可以减少滥用因素。
然而,在一个应用程序中,我被告知如果我以某种方式对该应用程序进行评分(例如五颗星),我将获得奖金。

An app can't rate itself, only the user can do so; this approach reduces abuse.
Apps normally ask them to go to Android Market to rate them, as they reduce the abuse factor.
In one app, however, I've been told that I will get a bonus if I rate that app a certain way (for example, five stars).

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