You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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:
FiveStarsDialogfiveStarsDialog = newFiveStarsDialog(this,"angelo.gallarello@gmail.com");
fiveStarsDialog.setRateText("Your custom text")
.setTitle("Your custom title")
.setForceMode(false)
.setStarColor(Color.YELLOW)
.setUpperBound(2) // Market opened if a rating >= 2 is selected
.setNegativeReviewListener(this) // OVERRIDE mail intent for negative review
.setReviewListener(this) // Used to listen for reviews (if you want to track them )
.showAfter(0);
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.
Used by
If you use my library, please tell me at angelo.gallarello [at] gmail [dot] com.
So I can add your app here!
License
Do what you want with this library.
About
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.