Searched defs:secondaryProgress (Results 1 - 3 of 3) sorted by relevance

/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.java5209 * @param secondaryProgress The secondary progress for the progress bar. Valid ranges are from
5212 public final void setSecondaryProgress(int secondaryProgress) { argument
5214 secondaryProgress + Window.PROGRESS_SECONDARY_START);
/frameworks/base/core/java/android/widget/
H A DProgressBar.java411 (id == R.id.progress || id == R.id.secondaryProgress));
758 doRefreshProgress(R.id.secondaryProgress, mSecondaryProgress, false, false);
830 final Drawable target = getTintTarget(R.id.secondaryProgress, false);
1015 * id {@link android.R.id#secondaryProgress} in a {@link LayerDrawable}
1331 * @param secondaryProgress the new secondary progress, between 0 and {@link #getMax()}
1338 public synchronized void setSecondaryProgress(int secondaryProgress) { argument
1343 if (secondaryProgress < 0) {
1344 secondaryProgress = 0;
1347 if (secondaryProgress > mMax) {
1348 secondaryProgress
1730 int secondaryProgress; field in class:ProgressBar.SavedState
[all...]

Completed in 166 milliseconds