Example usage for Java android.widget RatingBar fields, constructors, methods, implement or subclass
The text is from its open source code.
int | getNumStars() Returns the number of stars shown. |
float | getRating() Gets the current rating (number of stars filled). |
void | setMax(int max) |
void | setNumStars(final int numStars) Sets the number of stars to show. |
void | setOnRatingBarChangeListener(OnRatingBarChangeListener listener) Sets the listener to be called when the rating changes. |
void | setRating(float rating) Sets the rating (the number of stars filled). |
void | setStepSize(float stepSize) Sets the step size (granularity) of this rating bar. |