In my XML, I've set the focusable
, focusableInTouchMode
, clickable
, and longClickable
variables to false, yet I can still click and move the SeekBar. Do I need to actually change the listener events to do this? That seems so unnecessary.
You need to do this from your activity or fragment by
mySeekBar.setEnabled(false);