public static interface UberSeekBar.OnSeekBarChangeListener
| Modifier and Type | Method and Description |
|---|---|
void |
onProgressChanged(android.widget.SeekBar seekBar,
int progress,
boolean fromUser)
Notification that the progress level has changed.
|
void |
onStartTrackingTouch(android.widget.SeekBar seekBar)
Notification that the user has started a touch gesture.
|
void |
onStopTrackingTouch(android.widget.SeekBar seekBar)
Notification that the user has finished a touch gesture.
|
void onProgressChanged(android.widget.SeekBar seekBar,
int progress,
boolean fromUser)
seekBar - The SeekBar whose progress has changedprogress - The current progress level. This will be in the range 0..max where max
was set by ProgressBar.setMax(int). (The default value for max is 100.)fromUser - True if the progress change was initiated by the user.void onStartTrackingTouch(android.widget.SeekBar seekBar)
seekBar - The SeekBar in which the touch gesture beganvoid onStopTrackingTouch(android.widget.SeekBar seekBar)
seekBar - The SeekBar in which the touch gesture began