According to android docs you can get your parent ViewGroup
and call requestDisallowInterceptTouchEvent(true)
on it to stop other things from interferi
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.