In my XML, I\'ve set the focusable, focusableInTouchMode, clickable, and longClickable variables to false, yet I can stil
focusable
focusableInTouchMode
clickable
longClickable
You could create a subclass whose parent is a SeekBar. In your new class, override the onTouchEvent() method to always return false.
SeekBar
onTouchEvent()
This solution should not "grey out" the seek bar since the enabled state will not change.