syedowaisali / crystal-range-seekbar

537 stars 164 forks source link

how to reset the range of the left and right controller by specific value pragmatically ? #81

Closed MinaMedhatKamel closed 6 years ago

syedowaisali commented 6 years ago

Currently, there is no reset method supported alternately you can reset the position of thumbs by using these methods.

rangeSeekbar
    .setMinValue(0)
    .setMinStartValue(0)
    .setMaxValue(100)
    .setMaxStartValue(100);
MinaMedhatKamel commented 6 years ago

But if we take the same example that you provide and set setminstartValue(10) it will not be worked

MinaMedhatKamel commented 6 years ago

Oka I just forget to use .apply() method after setting the start and end value :)