父视图和子视图的触摸监听器
我在 ViewPager
中有一个 HorizontalScrollView
,我禁用了视图分页器的 ontouchevent ,但问题是水平滚动视图受此干扰。它不能正常工作,只能移动一点。
我只想了解父视图和子视图的触摸监听器功能,onInterceptTouchEvent
和touchEvent
,如果我触摸子视图,它们的调用顺序是什么?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
touchEvent 首先由子 View 处理,如果子 View 不处理,即返回 false,则由父 View 处理。但onIterceptTouchEvent是在touchEvent之前。
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.