I need to make rate option in my android app.
I found this link
but I'm not sure that want I search. I want to just provide ability for users to rate my app on Google Play.
Browse or search for the app you want to review. Find and select the app to open the detail page. To rate the app: Under “Rate this app," select the number of stars. To leave a review: Under the star rating, tap Write a review.
Launch the Google Play Store app on your Android device. Search and go to the detail page of the app you want to review. Under Rate this app, tap on Write a review. Author the review according to your experience.
“An app with 1 star rating will still be available for download even after it gets poor ratings.
Identify the most engaged users by prompting them first. Ask only in the “moments of joy” and showcase the benefits of their feedback for your product. Keep negative reviews away from the stores by providing a customer support center. A/B test your rating prompts to find the best one.
Simple do this...
final String appPackageName = "your.package.name"; try { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName))); } catch (android.content.ActivityNotFoundException anfe) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + appPackageName))); }
The rating is done through market app so that ratings can be trusted. If apps were allowed to handle the rating themselves, then the developer could manipulate the app's rating any time. So there is no way you can handle the rating yourself. You can only prompt the user to your app page on Google Play and ask them to rate your app for more support.
Use the built-in intent to launch market
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(); } }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With