在应用程序中评级一个Android应用程序 [英] Rating an android app within an application

查看:152
本文介绍了在应用程序中评级一个Android应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想拥有的功能,我可以允许用户从我的应用程序评分我的应用程序。我不是集中在平时的Andr​​oid市场指向,然后做。相反,我想我的应用程序有直接的评级系统。

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.

我是pretty的肯定,这是可以做到我的iPhone,但是任何人知道做机器人?

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

推荐答案

这是我们如何评价一个应用程序,一个在Android的官方网站建议。

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);

这篇关于在应用程序中评级一个Android应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆