理解onInterceptEvent和onTouchEvent方法的使用

对于ViewGroup,处理触摸事件有两个很重要的方法onIntercepteTouchEvent()和onTouchEvent()

  1. onInterceptTouchEvent(),MotionEvent事件会最先传递到这里,然后根据返回值,是否需要拦截改事件
  2. onTouchEvent(),根据需要是否要处理MotionEvent事件

onIntercepteTouchEvent()

点开源码,看下注释。

     /**
     * Implement this method to intercept all touch screen motion events.  This
     * allows you to watch events as they are dispatched to your children, and
     * take ownership of the current gesture at any point.
     *
     * <p>Using this function takes some care, as it has a fairly complicated
     * interaction with {@link View#onTouchEvent(MotionEvent)
     * View.onTouchEvent(MotionEvent)}, and using it requires implementing
     * that method as well as this one in the correct way.  Events will be
     * received in the following order:
     *
     * <ol>
     * <li> You will receive the down event here.
     * <li> The down event will be handled either by a child of this view
     * group, or given to your own onTouchEvent() method to handle; this means
     * you should implement onTouchEvent() to return true, so you will
     * continue to see the rest of the gesture (instead of looking for
     * a parent view to handle it).  Also, by returning true from
     * onTouchEvent(), you will not receive any following
     * events in onInterceptTouchEvent() and all touch processing must
     * happen in onTouchEvent() like normal.
     * <li> For as long as you return false from this function, each following
     * event (up to and including the final up) will be delivered first here
     * and then to the target's onTouchEvent().
     * <li> If you return true from here, you will not receive any
     * following events: the target view will receive the same event but
     * with the action {@link MotionEvent#ACTION_CANCEL}, and all further
     * events will be delivered to your onTouchEvent() method and no longer
     * appear here.
     * </ol>
     *
     * @param ev The motion event being dispatched down the hierarchy.
     * @return Return true to steal motion events from the children and have
     * them dispatched to this ViewGroup through onTouchEvent().
     * The current target will receive an ACTION_CANCEL event, and no further
     * messages will be delivered here.
     */

抠脚大汉的英语水平简单翻译一下:

实现这个方法是用来拦截所有触摸屏幕的动作事件,这个方法允许你监控这些事件当它们被分派到子View时
并且拥有当前全部点的动作的所有权。

使用这个方法需要特别小心,因为有非常复杂的联系跟onTouchEvent(),使用如同这个方法要用正确的方式,事件接收根据以下规则:

你将先收到down event在这里
这个down事件可以被一个子View处理,或者被自身的onTouchEvent()事件处理;意味你可以实现 onTouchEvent()中返回true, 你将会
继续收到该手势的后续的事件(而不是继续寻找父View去处理它),同样,在onTouchEvent()事件返回true ,你将不会接收到任何的后续事件
在onInterceptEvent()方法中,像正常那样,所有的事件处理必须写在onTouchEvent()中

如果在这个方法中你返回了false,每一个的后续事件(直到最后一次的up 事件)先传到这里,然后在传递到目标的onTouchEvent()

如果在这个方法中你返回了true,除了MotionEvent#ACTION_CANCEL这个,你将不会收到任何的后续事件。所有的将来时间将直接传递到
onTouchEvent()中,不会出现在这个方法里了

@param:分派过来的触摸事件
@return 返回true偷取这个事件从子View中,并且派遣到自身的onTouchEvent()
当前目标将受到ACTION_CANCEL 的时间,将来的后续事件不会再传到这里。

来总结下:

  1. 如果在{@linkMotionEvent#ACTION_DOWN}这里返回了true,后续的其他事件如{@link MotionEvent#ACTION_MOVE
    MotionEvent#ACTION_UP}便不会往下传,也不会返回到这方法,
    直接传到自身的onTouchEvent();
  2. 如果返回false,后续事件会优先传到这个方法中,然后再传给子View

注:如果没有任何子view处理这个事件,最终也会传到自身的onTouchEvent()方法中;如果该事件没有被处理,后续事件也不会传到此方法中;
还有个需要注意的是子View可以调用父类的requestDisallowInterceptTouchEvent()方法,传true指的是要求父类不要拦截事件,listView,scrollView中就调了这个方法,在下拉刷新这种情况时,父类可以屏蔽这个方法,就是继承这个方法,啥也不做,空实现,v4中的SwipeRefreshLayout
就是这样做的。

onTouchEvent()

     /**
     * Implement this method to handle touch screen motion events.
     * <p>
     * If this method is used to detect click actions, it is recommended that
     * the actions be performed by implementing and calling
     * {@link #performClick()}. This will ensure consistent system behavior,
     * including:
     * <ul>
     * <li>obeying click sound preferences
     * <li>dispatching OnClickListener calls
     * <li>handling {@link AccessibilityNodeInfo#ACTION_CLICK ACTION_CLICK} when
     * accessibility features are enabled
     * </ul>
     *
     * @param event The motion event.
     * @return True if the event was handled, false otherwise.
     */

实现这个方法来处理触摸屏幕的事件

如果这个方法之前被用来检测点击动作,建议改为实现和调用performClick(), 这样确保包含系统的行为,包含
点击声音
分派点击回调事件
处理@link AccessibilityNodeInfo#ACTION_CLICK ACTION_CLICK}当一些可访问的功能可用时

这个文档仅仅说了下这个方法是干啥的,是用来处理触摸事件的。

后记

一般认为ACTION_DOWN是一个触摸事件集合的开始,然后到ACTION_UP 或者ACTION_CANCEL代表事件结束。移动时会产生有ACTION_MOVE事件,
多点时另一个点按下时会产生ACTION_POINTER_DOWN,其中一个点离开时产生ACTION_POINTER_UP
如果在ACTION_DOWN事件时,在onTouchEvent()中返回true表示处理了该事件,其他的后续事件就会传递到这里

在ACTION_DOWN事件中,如果在目标View的onTouchEvent()方法中返回true,表示处理了这个事件,将不会往下传递,后续的其他事件都会传递到这里

多点时对于ACTION_MOVE始终的event,getActionIndex() 总是0的疑惑?

  • ACTION_MOVE属于单点的event的action,头两位不会带索引信息的,所以始终是返回0,要想获取其他的点,需要每个点遍历,根据pointIndex;
    从另外一个角度看,多个点共有一个ACTION_MOVE,可以减少事件的分发的频率,减少内存的开销,因为有可能很多个点同时移动
  • 除了ACTION_MOVE,以外的ACTION_POINTER_DOWN,ACTION_POINTER_UP,这两个多点时才有的事件,会带有索引信息,ACTION_UP也会有索引信息,调用getActionIndex()则可以直接获取到对应的pointerIndex

最好自己写个demo来试下,就很容易理解了,不要脸的附上自己写的( ▼-▼ )
https://github.com/etwge/TouchEventExample

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,922评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,591评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,546评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,467评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,553评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,580评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,588评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,334评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,780评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,092评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,270评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,925评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,573评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,194评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,437评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,154评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容