Scope

There is a viewpager of two fragments. One of those fragments has a layout witch listens to onTouch changes at X-axis.

Problem

Layout doesn't get almost all Action.Move events when touching and sliding along X-axis. It seems that viewpager has a onInterceptTouchEvent which returns true.

Question

Is it real to override viewpager's behavior to make it and my layout work together? So the perfect situation is layout intercepts all onTouch events on it and viewpager manages the rest of onTouch events. Thanks!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You are right, I believe every scrolling container intercepts touch events, but you can prevent it. You can put a touch listener on your layout:

public boolean onTouch(View v, MotionEvent event) {
    switch (event.getAction()) {
    case MotionEvent.ACTION_MOVE: 
        pager.requestDisallowInterceptTouchEvent(true);
        break;
    case MotionEvent.ACTION_UP:
    case MotionEvent.ACTION_CANCEL:
        pager.requestDisallowInterceptTouchEvent(false);
        break;
    }
}
link|improve this answer
Thanks! I should be more patient and careful with android documentation. – Aleksey Malevaniy Nov 14 '11 at 14:47
Will this only work in onTouch ? I tried this in onScale but it is still intercepting my touch. – dev_android Nov 30 '11 at 10:53
feedback

Similar situation (but not using a viewpager), putting this in the view that needed the touch event worked for me.

@Override
    Public boolean onTouchEvent(MotionEvent event) {

    if (event.getAction() == MotionEvent.ACTION_MOVE) {
        this.getParent().requestDisallowInterceptTouchEvent(true);
        // My Other Code
    }

    return true;
}
link|improve this answer
This is the correct solution, however I would like to note that this event WILL still be handled by the ViewPager (or any intermediate ViewGroups) if you do not return true. If you return false, the event is unhandled and will propagate back up to the ViewPager. – nacitar sevaht Mar 29 at 21:01
Yes I missed that. I have edited the answer. – Kuffs Mar 30 at 5:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.