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

/frameworks/base/core/java/android/widget/
H A DRatingBar.java275 final int secondaryProgress = (int) (Math.ceil(progressInStars) * ratio);
276 setSecondaryProgress(secondaryProgress);
H A DProgressBar.java476 (id == R.id.progress || id == R.id.secondaryProgress));
844 doRefreshProgress(R.id.secondaryProgress, mSecondaryProgress, false, false, false);
916 final Drawable target = getTintTarget(R.id.secondaryProgress, false);
1101 * id {@link android.R.id#secondaryProgress} in a {@link LayerDrawable}
1457 * @param secondaryProgress the new secondary progress, between 0 and {@link #getMax()}
1464 public synchronized void setSecondaryProgress(int secondaryProgress) { argument
1469 if (secondaryProgress < 0) {
1470 secondaryProgress = 0;
1473 if (secondaryProgress > mMax) {
1474 secondaryProgress
1857 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.java5763 * @param secondaryProgress The secondary progress for the progress bar. Valid ranges are from
5768 public final void setSecondaryProgress(int secondaryProgress) { argument
5770 secondaryProgress + Window.PROGRESS_SECONDARY_START);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DAppCompatProgressBarHelper.java88 (id == android.R.id.progress || id == android.R.id.secondaryProgress));
H A DAppCompatDrawableManager.java263 setPorterDuffColorFilter(ld.findDrawableByLayerId(android.R.id.secondaryProgress),
274 setPorterDuffColorFilter(ld.findDrawableByLayerId(android.R.id.secondaryProgress),

Completed in 771 milliseconds