I have a HorizontalScrollView inside a ViewPager , I have disabled the ontouchevent of the view pager, but the problem is horizontal scroll view is disturbed by this. It doesn't work properly, only moves a little.

I just want to understand the touch listeners functionality , onInterceptTouchEvent and touchEvent of the parent and child view, what is the order their calling if i touch on a child view?

link|improve this question

77% accept rate
u got any answers for this.. – RajaReddy P Sep 17 '11 at 4:26
I'm waiting for a response too! – StErMi Sep 23 '11 at 21:07
feedback

1 Answer

touchEvent is first be handled by child View , if it doesn't handle it ,which means return false,the parent view will handle it. But onIterceptTouchEvent is before touchEvent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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