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

/packages/apps/MusicFX/src/com/android/musicfx/seekbar/
H A DProgressBar.java321 (id == R.id.progress || id == R.id.secondaryProgress));
534 doRefreshProgress(R.id.secondaryProgress, mSecondaryProgress, false, false);
680 * @param secondaryProgress the new secondary progress, between 0 and {@link #getMax()}
687 public synchronized void setSecondaryProgress(int secondaryProgress) { argument
692 if (secondaryProgress < 0) {
693 secondaryProgress = 0;
696 if (secondaryProgress > mMax) {
697 secondaryProgress = mMax;
700 if (secondaryProgress != mSecondaryProgress) {
701 mSecondaryProgress = secondaryProgress;
1033 int secondaryProgress; field in class:ProgressBar.SavedState
[all...]

Completed in 38 milliseconds