onInterceptTouchEvent only gets ACTION_DOWN

I’ll answer my own question: onInterceptTouchEvent only get called if the parent has a child view which returns “true” from onTouchEvent. Once the child returns true, the parent now has a chance to intercept that event.

enter image description here

Leave a Comment