Search code examples
androidseekbar

How to handle seekbar for dragging in android


I have a seekbar in my app, which shows the level of age in it. If i touch that seekbar it updates the age in the textview, but i can't able to drag continuously and it stops dragging. for every value have to make touch event separately but not continous


Solution

  • Finally,it works

    holder.ageSeekbar.setFocusable(false);
    

    I removed focus for seekbar