Searched refs:stepSize (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DRatingBar.java94 final float stepSize = a.getFloat(R.styleable.RatingBar_stepSize, -1);
101 if (stepSize >= 0) {
102 setStepSize(stepSize);
206 * @param stepSize The step size of this rating bar. For example, if
209 public void setStepSize(float stepSize) { argument
210 if (stepSize <= 0) {
214 final float newMax = mNumStars / stepSize;

Completed in 27 milliseconds