OnSeekBarChangeListener

A callback that notifies clients when the progress level has been changed. This includes changes that were initiated by the user through a touch gesture or arrow key/trackball as well as changes that were initiated programmatically.

interface OnSeekBarChangeListener

Functions

onProgressChanged
Link copied to clipboard

Notification that the progress level has changed. Clients can use the fromUser parameter to distinguish user-initiated changes from those that occurred programmatically.

abstract fun onProgressChanged(seekBar: ImgLyFloatSlider, value: Float, fromUser: Boolean)
onStartTrackingTouch
Link copied to clipboard

Notification that the user has started a touch gesture. Clients may want to use this to disable advancing the seekbar.

abstract fun onStartTrackingTouch(seekBar: ImgLyFloatSlider)
onStopTrackingTouch
Link copied to clipboard

Notification that the user has finished a touch gesture. Clients may want to use this to re-enable advancing the seekbar.

abstract fun onStopTrackingTouch(seekBar: ImgLyFloatSlider)