syedowaisali / crystal-range-seekbar

537 stars 164 forks source link

MinStartValue Problem #102

Open israilbony opened 6 years ago

israilbony commented 6 years ago

There was a problem while setting minimum start value dynamically. Please have a watch. it's a silly problem.

maximilienBelinga commented 6 years ago

You have to add .apply(); after setting the value. That means for instance: rangeSeekbar.setMinStartValue(100).apply(); If you want to append min and max value, you have to chain methods: rangeSeekbar.setMinStartValue(100).setMaxStartValue(500).apply();

Hope that helps!

israilbony commented 6 years ago

Thank You I have solve this problem

tempersitu commented 5 years ago

You have to add .apply(); after setting the value. That means for instance: rangeSeekbar.setMinStartValue(100).apply(); If you want to append min and max value, you have to chain methods: rangeSeekbar.setMinStartValue(100).setMaxStartValue(500).apply();

Hope that helps!

This should be post on readme.md, it's important.