I'm looking for something equivalent to MultiSlider's different colours for each bin feature but in the modern 'Materials Range Slider'. MultiSlider's example: MultiSlider's example (from https://github.com/apptik/MultiSlider)
However Multislider is no longer being maintained as of 2 years ago and I don't want to depend on unmaintained code.
I've looked at the xml attributes for the Range Slider and I don't see something that would accomplish this. (https://developer.android.com/reference/com/google/android/material/slider/RangeSlider)
Context: I have three percentage based inputs that are user defined. A range slider seemed to be the most efficient way of dealing with having these three percentages defined nicely (without worrying about rounding, having it all equal to 100%, dealing with users typing in stuff, etc).
Is there a better way of dealing with three percentage based inputs then range sliders? If so, what is it?
If not, is it possible to implement this idea with range sliders?
If not, what third party libraries would you recommend?
Thanks in advance.
(It looks like this question comes closest, but if there is another solution besides 'make it yourself', that would be great, and if not, I'll make it myself then: Circular Progress bar with three different color in Android)
What I've tried:
- Using Multislider: couldn't get it to build properly
- Using Range Slider: can't seem to modify the colour of only one side of the track. There seems to only be 'active' track and 'inactive' track.