syedowaisali / crystal-range-seekbar

538 stars 170 forks source link

Reset range seekbar #119

Closed gokul1408 closed 5 years ago

gokul1408 commented 6 years ago

how to reset rangeseekbar when a button is clicked, both pointer location should be in the default postion

roelvandun commented 6 years ago

rangeSeekbar.setMinStartValue(minValue); rangeSeekbar.setMinValue(minValue); rangeSeekbar.setMaxStartValue(maxValue); rangeSeekbar.setMaxValue(maxValue);

gokul1408 commented 6 years ago

rangeSeekbar.setMinStartValue(minValue).apply(); works.

ajaydhadhal1111 commented 5 years ago

Thanks it works.