Android Seekbar With Thumb Below The Bar
I'm trying to implement a Seek Bar following the design of the art team. They want a thumb that is not centered vertically, but rather below the progress bar (I would post a pictur
Solution 1:
Here's an idea(I haven't tried it), make a seek bar below the one which you want the user to move, and make it invisible with VIEW.INVISIBLE
. Then, in the invisible seek bar's onSeekBarChangedListener
, set the first visible seek bar to the value that the second seek bar is on. And finally give the first seekbar the setFocuseable(false)
, so that the user doesnt move the seek bar from the wrong place. If this doesn't make sense or work tell me and I will revise/delete this.
Post a Comment for "Android Seekbar With Thumb Below The Bar"