Slider Control in Android
How can i implement slider control (without using seek bar) in android?
Like, AT&T Slider Contr开发者_C百科ol
Thanks in advance..
Straight-forward decision: use 2 ImageView (slider and bar) and move one along other.
Or try to override SeekBar, override method onTouch() and return in it true.
精彩评论