Reputation: 323
I would like to register a clickable event on the seekbar's thumb in order to trigger an event when the user has cliked it. Is it possible?Any ideas?Thanks in advance!
Upvotes: 0
Views: 689
Reputation: 778
Override the OnTouchListener for the seekbar and only process the movement on the thumb when the MotionEvent is a move event.
event.getAction() == MotionEvent.ACTION_MOVE
Please refer the https://github.com/AnderWeb/discreteSeekBar
Upvotes: 2