I need to create a custom SeekBar, which can show two different values. My idea is, that dragging the thumb will change background color of whole seek bar (first value) and there will also be a white horizontal line, which will show the second value.
Can you help me achieve this?
One of my thoughts was to use
mySeekBar.setProgressDrawable(dynamicalyCreatedDrawable);
but I hope there should be a better solution. If there is not, can you at least point me, how to dynamicaly draw an image/drawable to use it like this?