What\'s the best way to disable the touch events for all the views?
Override the dispatchTouchEvent method of the activity and like this:
dispatchTouchEvent
@Override public boolean dispatchTouchEvent(MotionEvent ev){ return true;//consume }
If you return true all touch events are disabled.
true
Return false to let them work normally
false