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

/frameworks/base/core/java/android/widget/
H A DRatingBar.java274 final int secondaryProgress = (int) (Math.ceil(progressInStars) * ratio);
275 setSecondaryProgress(secondaryProgress);
H A DProgressBar.java463 (id == R.id.progress || id == R.id.secondaryProgress));
817 doRefreshProgress(R.id.secondaryProgress, mSecondaryProgress, false, false);
889 final Drawable target = getTintTarget(R.id.secondaryProgress, false);
1074 * id {@link android.R.id#secondaryProgress} in a {@link LayerDrawable}
1371 * @param secondaryProgress the new secondary progress, between 0 and {@link #getMax()}
1378 public synchronized void setSecondaryProgress(int secondaryProgress) { argument
1383 if (secondaryProgress < 0) {
1384 secondaryProgress = 0;
1387 if (secondaryProgress > mMax) {
1388 secondaryProgress
1773 int secondaryProgress; field in class:ProgressBar.SavedState
[all...]
/frameworks/base/core/java/android/app/
H A DProgressDialog.java222 public void setSecondaryProgress(int secondaryProgress) { argument
224 mProgress.setSecondaryProgress(secondaryProgress);
227 mSecondaryProgressVal = secondaryProgress;
H A DActivity.java5440 * @param secondaryProgress The secondary progress for the progress bar. Valid ranges are from
5443 public final void setSecondaryProgress(int secondaryProgress) { argument
5445 secondaryProgress + Window.PROGRESS_SECONDARY_START);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatRatingBar.java103 (id == android.R.id.progress || id == android.R.id.secondaryProgress));

Completed in 121 milliseconds