hotchemi / Android-Rate

Android-Rate is a library to help you promote your android app by prompting users to rate the app after using it for a few days.
http://hotchemi.github.io/Android-Rate
MIT License
720 stars 216 forks source link

Against dialog guidelines #133

Open hendrawd opened 7 years ago

hendrawd commented 7 years ago

From https://material.io/guidelines/components/dialogs.html#dialogs-specs

Number of actions

Dialogs should not include more than two actions. A third action, such as “Learn more,” navigates away from the dialog, potentially leaving the task unfinished.

Avoid using a “Learn more” action to access help documentation; in-line expansion within the dialog should be used instead. If more extensive information is needed, provide it prior to entering the dialog.

Is there anything you can do to fulfill the guidelines for the best user experience?

AlexanderLS commented 6 years ago

@hendrawd In AndroidRate Release 1.1.5 you can use

AppRate.with(this).setShowLaterButton(false);
AppRate.with(this).setShowNeverButton(false);