Search code examples
androidrating

Rating an android app within an application


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?


Solution

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