public static interface SeekBar.OnSeekBarChangeListener
| 限定符和类型 | 方法和说明 |
|---|---|
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 GeniusSeekBarprogress - The current progress level. This will be in the range 0..max where max
was set by AbsSeekBar.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