Reputation: 9726
I want not to be able to move the draggable thumb of my seek bar. progressBar.setClickable(false);
does not help.
Upvotes: 3
Views: 1752
Reputation: 8142
ProgressBar is not clickable by default so you can use it instead of SeekBar. If you want to disable SeekBar thumb use
progressBar.setEnabled(false);
Upvotes: 1