public static interface SeekBar.OnSeekBarChangeListener
Modifier and Type | Method and Description |
---|---|
void |
onProgressChanged(SeekBar seekBar,
int progress,
boolean fromUser)
Notification that the progress level has changed.
|
void |
onStartTrackingTouch(SeekBar seekBar)
Notification that the user has started a touch gesture.
|
void |
onStopTrackingTouch(SeekBar seekBar)
Notification that the user has finished a touch gesture.
|
void onProgressChanged(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(SeekBar seekBar)
seekBar
- The SeekBar in which the touch gesture beganvoid onStopTrackingTouch(SeekBar seekBar)
seekBar
- The SeekBar in which the touch gesture began