I know how to open my app in play store but i want to open rating dialog of play store for my app like below image.
Asked
Active
Viewed 2,699 times
3

kundan roy
- 1,936
- 1
- 18
- 21
-
1Possible duplicate of ["Rate This App"-link in Google Play store app on the phone](http://stackoverflow.com/questions/10816757/rate-this-app-link-in-google-play-store-app-on-the-phone) – Amir Aug 02 '16 at 10:08
-
but answer is not available. – kundan roy Aug 02 '16 at 10:14
-
Google Play Store app doesn't allow direct navigation to Ratings dialog. – Vinothkumar Arputharaj Aug 02 '16 at 10:35
-
I think I have seen this in Google Keep. They opened the same dialog in the app itself. There must be some way! – Mangesh Dec 05 '16 at 17:50
1 Answers
0
Rating can only be done using the play store app so that rating can be trusted. The reason being if rating would be allowed from other apps developers could potentially exploit it by rating themselves as 5 star without the user even knowing. You could try the below code to launch play store with your app loaded so the user can rate it there.
private void launchMarket() {
Uri uri = Uri.parse("market://details?id=" + getPackageName());
Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);
try {
startActivity(myAppLinkToMarket);
} catch (ActivityNotFoundException e) {
Toast.makeText(this, " unable to find market app", Toast.LENGTH_LONG).show();
}
}

Mukesh Solanki
- 76
- 5
-
i want to open rating dialog of play store automatically with launch of play store app. – kundan roy Aug 02 '16 at 09:57
-
2Thats not possible as far as i can tell the max you can do is launch the default market app and load your app page on it :P – Mukesh Solanki Aug 02 '16 at 10:02
-