requestDisallowInterceptTouchEvent does not work unless selecting view first

linuxfreakus picture linuxfreakus · Jan 29, 2013 · Viewed 23k times · Source

According to android docs you can get your parent ViewGroup and call requestDisallowInterceptTouchEvent(true) on it to stop other things from interfering. This causes not only the immediate parent but any other parent objects that might intercept the touch to ignore it for the duration of the particular event...

This sounds great and seems to work fine on newer devices (mine is android 4.1) but older devices (i.e. 2.3.3) it does not work unless I click on my scroll view first and then scroll it, otherwise other parent scrollable views may still interfere.

I'm sending the request in the View.OnTouchListener for the scrollable child.

Any idea how to make this work automatically without resorting to writing custom subclasses to check the hit rect on the motion event, etc?

Answer

sciutand picture sciutand · Feb 7, 2013

I had some problems too with 2.3 where it the disallow would intermittenltly work.

I used to call view.requestDisallowInterceptTouchEvent(true) regardless of the event.getAction().

Then I tried to be a good citizen and changed my code in the onTouch() method to the following:

switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN:
            v.requestDisallowInterceptTouchEvent(true);
            break;
        case MotionEvent.ACTION_CANCEL:
        case MotionEvent.ACTION_UP:
            v.requestDisallowInterceptTouchEvent(false);
            break;
        default:
            break;
        }

Remember that this method (or some other views under the referenced view) has to return true for the parents to adhere to the disallow request.

Not sure this will fix your issue but worth a try.