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