Just add touch event handler and return true, like example below:
seekBar.setOnTouchListener(new OnTouchListener(){
@Override
public boolean onTouch(View v, MotionEvent event) {
return true;
}
});
User won't be able to touch and change the progress this way.