Skip to content

Xamarin.Android Five Stars Library is a small library that helps developer add a "Rate My App" dialog to their applications. It's called "Five Stars" because the dialog has a different behaviour based on the rating given by the user. Based on Angelo Gallarello's version.

License

Notifications You must be signed in to change notification settings

FANMixco/Xamarin-FiveStarsRate

Repository files navigation

Xamarin-FiveStarsRate

Xamarin.Android Five Stars Library is a small library that helps developer add a "Rate My App" dialog to their applications. It's called "Five Stars" because the dialog has a different behaviour based on the rating given by the user. Based on Angelo Gallarello's version: https://github.com/Angtrim/Android-Five-Stars-Library

It's called "Five Stars" because the dialog has a different behaviour based on the rating given by the user.

If the user gives 4 or 5 stars out of 5, the user is sent to the Google Play Store page to give an actual rating.

If the user gives 3 or less stars out of 5, the user is asked to send a bug report to the developer.

If "Force Mode" is activated, when the user selects 4/5 stars, he is immediately redirected to the Play Store, without asking for a confirm. :D

Preview

preview

Get it

Package Latest Release
Xamarin-FiveStarsRate NuGet Badge Xamarin-FiveStarsRate

How to use

To use this library just add this snippet in the OnCreate of your activity.

The ShowAfter(int numbersOfAccess) method tells the library after how many access the dialog has to be shown.

Example:

FiveStarsDialog fiveStarsDialog = new FiveStarsDialog(this, "fede_example@noreply.com");
fiveStarsDialog.SetRateText("Your custom text")
		.SetTitle("Your custom title")
		.SetForceMode(false)
		.SetUpperBound(2)
		.SetNegativeReviewListener(new NegativeReview(this))
		.SetReviewListener(new PositiveReview(this))
		.ShowAfter(0);

public class NegativeReview : Java.Lang.Object, INegativeReviewListener
{
	readonly MainActivity MainActivity;

	public NegativeReview(MainActivity mainActivity)
	{
		MainActivity = mainActivity;
	}

	public void OnNegativeReview(int p0)
	{
		Toast.MakeText(MainActivity, $"Negative. Stars {p0}", ToastLength.Short);
	}
}

public class PositiveReview : Java.Lang.Object, IReviewListener
{
	readonly MainActivity MainActivity;

	public PositiveReview(MainActivity mainActivity)
	{
		MainActivity = mainActivity;
	}

	public void OnReview(int p0)
	{
		Toast.MakeText(MainActivity, $"Positive. Stars {p0}", ToastLength.Short);
	}
}

Features

The library is very simple, just note that :

  • When the user tap OK or NEVER the dialog will not show again
  • When the user tap NOT NOW the access counter will be reset and the dialog will be shown again after the selected times.

Follow me at:

LinkedIn YouTube Amazon Goodreads Instagram Cyber Prophets Sharing Your Stories
LinkedIn YouTube Amazon Goodreads Instagram RedCircle Podcast RedCircle Podcast

About

Xamarin.Android Five Stars Library is a small library that helps developer add a "Rate My App" dialog to their applications. It's called "Five Stars" because the dialog has a different behaviour based on the rating given by the user. Based on Angelo Gallarello's version.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages