Drag thumb

I do not want to move the draggable finger of my search bar. progressBar.setClickable(false);Does not help.

+3
source share
1 answer

The ProgressBar does not click by default, so you can use it instead of the SeekBar . If you want to disable SeekBar large byte, use

progressBar.setEnabled(false);
+1
source

All Articles