Seek bar's draggable thumb
I want not to be able to move the draggable thumb of my seek bar. progressBar.setClic开发者_C百科kable(false);
does not help.
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);
精彩评论