美文网首页
面试:讲讲 Android 的事件分发机制

面试:讲讲 Android 的事件分发机制

作者: ZHDelete | 来源:发表于2018-05-22 15:49 被阅读27次

    转自:
    面试:讲讲 Android 的事件分发机制


    正文:

    还是不能偏题,其实这样的一个面试问题,确实是一个较为普遍的问题,我相信同类型的文章,网上一搜也是比比皆是,而且简单看一下关注度就能知道有多少人倒在了这种源码类型的面试上。

    一般情况下,事件列都是从用户按下(ACTION_DOWN)的那一刻产生的,不得不提到,三个非常重要的与事件相关的方法。

    • dispatchTouchEvent()
    • onTouchEvent()
    • onInterceptTouchEvent()

    Activity 的事件分发机制

    从英文单词中已经很明显的知道,dispatchTouchEvent() 是负责事件分发的。当点击事件产生后,事件首先会传递给当前的 Activity,这会调用 Activity 的 dispatchTouchEvent() 方法,我们来看看源码中是怎么处理的。

    act_dispathchTouchEvent.png

    注意截图中,我增加了一些注释,便于我们更加方便的理解,由于我们一般产生点击事件都是 MotionEvent.ACTION_DOWN,所以一般都会调用到 onUserInteraction() 这个方法。我们不妨来看看都做了什么。

    act_onUserInteraction.png

    很遗憾,这个方法实现是空的,不过我们可以从注释和其他途径可以了解到,该方法主要的作用是实现屏保功能,并且当此 Activity 在栈顶的时候,触屏点击 Home、Back、Recent 键等都会触发这个方法。

    再来看看第二个 if 语句,getWindow().superDispatchTouchEvent(),getWindow() 明显是获取 Window,由于 Window 是一个抽象类,所以我们能拿到其子类 PhoneWindow,我们直接看看 PhoneWindows.superDispatchTouchEvent() 到底做了什么操作。

    phoneWindow-superDispatchTouchEvent.png

    直接调用了 DecorView 的 superDispatchTrackballEvent() 方法。DecorView 继承于 FrameLayout,作为顶层 View,是所有界面的父类。而 FrameLayout 作为 ViewGroup 的子类,所以直接调用了 ViewGroup 的 dispatchTouchEvent()。

    ViewGroup的事件纷发机制

    我们通过查看 ViewGroup 的 dispatchTouchEvent() 可以发现。

    viewGroup-dispatchTouchEvent.png

    其中采用到了 onInterceptTouchEvent(ev) 对 intercept 进行赋值。大多数情况下,onInterceptTouchEvent() 返回值为 false,但我们完全可以通过重写 onInterceptTouchEvent(ev) 来改变它的返回值,不妨继续往下看,我们后面对这个 intercept 做了什么处理。

    viewGroup-dispatchTouchEvent-2.png

    暂时忽略 判断的 canceled,该值同样大多数时候都返回 false,所以当我们没有重写 onInterceptTouchEvent() 并使它的返回值为 true 时,一般情况下都是可以进入到该方法的。

    继续阅读源码可以发现,里面做了一个 For 循环,通过倒序遍历 ViewGroup 下面的所有子 View,然后一个一个判断点击位置是否是该子 View 的布局区域,当然还有一些其他的,由于篇幅原因,这里就不细讲了。

    下面一段转自: 10分钟了解安卓的事件纷发

    final View[] children = mChildren;
    for (int i = childrenCount - 1; i >= 0; i--) {
        //i
        final int childIndex = getAndVerifyPreorderedIndex(
                childrenCount, i, customOrder);
        //children[i]
        final View child = getAndVerifyPreorderedView(
                preorderedList, children, childIndex);
    
        // If there is a view that has accessibility focus we want it
        // to get the event first and if not handled we will perform a
        // normal dispatch. We may do a double iteration but this is
        // safer given the timeframe.
        //事件针对特殊情况,对象才会不为空
        if (childWithAccessibilityFocus != null) {
            if (childWithAccessibilityFocus != child) {
                continue;
            }
            childWithAccessibilityFocus = null;
            i = childrenCount - 1;
        }
        /*
        *canViewReceivePointerEvents()确保子View要可见。执行补间动画时View会变成可见,即使View的Visibility属性为INVISIBLE。
        *isTransformedTouchPointInView()判断事件的坐标是否落在当前子View的区域内。
        */
        if (!canViewReceivePointerEvents(child)
                || !isTransformedTouchPointInView(x, y, child, null)) {
            ev.setTargetAccessibilityFocus(false);
            continue;
        }
        //如果之前已有事件交由子View处理消费,则直接跳出循环,将事件传递下去
        newTouchTarget = getTouchTarget(child);
        if (newTouchTarget != null) {
            // Child is already receiving touch within its bounds.
            // Give it the new pointer in addition to the ones it is handling.
            newTouchTarget.pointerIdBits |= idBitsToAssign;
            break;
        }
    
        resetCancelNextUpFlag(child);
        //将事件传递给子View
        if (dispatchTransformedTouchEvent(ev, false, child, idBitsToAssign)) {
            // Child wants to receive touch within its bounds.
            mLastTouchDownTime = ev.getDownTime();
            //反射测试preorderedList == null,该集合按照子View绘制顺序和Z轴排序子View。
            if (preorderedList != null) {
                // childIndex points into presorted list, find original index
                for (int j = 0; j < childrenCount; j++) {
                    if (children[childIndex] == mChildren[j]) {
                        mLastTouchDownIndex = j;
                        break;
                    }
                }
            } else {
                mLastTouchDownIndex = childIndex;
            }
            mLastTouchDownX = ev.getX();
            mLastTouchDownY = ev.getY();
            //链表存储消费事件的子View
            //给mFirstTouchTarget赋值
            newTouchTarget = addTouchTarget(child, idBitsToAssign);
            alreadyDispatchedToNewTouchTarget = true;
            break;
        }
    
        // The accessibility focus didn't handle the event, so clear
        // the flag and do a normal dispatch to all children.
        ev.setTargetAccessibilityFocus(false);
    }
    

    跟进:
    dispatchTransformedTouchEvent

        private boolean dispatchTransformedTouchEvent(MotionEvent event, boolean cancel,
                View child, int desiredPointerIdBits) {
            final boolean handled;
    
            // Canceling motions is a special case.  We don't need to perform any transformations
            // or filtering.  The important part is the action, not the contents.
            final int oldAction = event.getAction();
            if (cancel || oldAction == MotionEvent.ACTION_CANCEL) {
                event.setAction(MotionEvent.ACTION_CANCEL);
                if (child == null) {
                    handled = super.dispatchTouchEvent(event);
                } else {
                    handled = child.dispatchTouchEvent(event);
                }
                event.setAction(oldAction);
                return handled;
            }
    
            // Calculate the number of pointers to deliver.
            final int oldPointerIdBits = event.getPointerIdBits();
            final int newPointerIdBits = oldPointerIdBits & desiredPointerIdBits;
    
            // If for some reason we ended up in an inconsistent state where it looks like we
            // might produce a motion event with no pointers in it, then drop the event.
            if (newPointerIdBits == 0) {
                return false;
            }
    
            // If the number of pointers is the same and we don't need to perform any fancy
            // irreversible transformations, then we can reuse the motion event for this
            // dispatch as long as we are careful to revert any changes we make.
            // Otherwise we need to make a copy.
            final MotionEvent transformedEvent;
            if (newPointerIdBits == oldPointerIdBits) {
                if (child == null || child.hasIdentityMatrix()) {
                    if (child == null) {
                        handled = super.dispatchTouchEvent(event);
                    } else {
                        final float offsetX = mScrollX - child.mLeft;
                        final float offsetY = mScrollY - child.mTop;
                        event.offsetLocation(offsetX, offsetY);
    
                        handled = child.dispatchTouchEvent(event);
    
                        event.offsetLocation(-offsetX, -offsetY);
                    }
                    return handled;
                }
                transformedEvent = MotionEvent.obtain(event);
            } else {
                transformedEvent = event.split(newPointerIdBits);
            }
    
            // Perform any necessary transformations and dispatch.
            if (child == null) {
                handled = super.dispatchTouchEvent(transformedEvent);
            } else {
                final float offsetX = mScrollX - child.mLeft;
                final float offsetY = mScrollY - child.mTop;
                transformedEvent.offsetLocation(offsetX, offsetY);
                if (! child.hasIdentityMatrix()) {
                    transformedEvent.transform(child.getInverseMatrix());
                }
    
                handled = child.dispatchTouchEvent(transformedEvent);
            }
    
            // Done.
            transformedEvent.recycle();
            return handled;
        }
    

    ViewGroup,挑选传递事件的子View要符合两个条件:

    • 可见状态
    • 事件的坐标在子View范围

    符合这两个条件,则调用dispatchTransformedTouchEvent()方法把事件传递给子View。dispatchTransformedTouchEvent()方法会根据child参数来做不同的处理,当子View为null时调用View的dispatchTouchEvent()传递事件,意味当前View自己处理事件。child不为null的情况下,则调用child的dispatchTouchEvent()把事件交给子View。

    if (child == null) {
        handled = super.dispatchTouchEvent(transformedEvent);
    } else {
        final float offsetX = mScrollX - child.mLeft;
        final float offsetY = mScrollY - child.mTop;
        transformedEvent.offsetLocation(offsetX, offsetY);
        if (! child.hasIdentityMatrix()) {
            transformedEvent.transform(child.getInverseMatrix());
        }
    
        handled = child.dispatchTouchEvent(transformedEvent);
    }
    

    View 的事件分发机制

    ViewGroup 说到底还是一个 View,所以我们不得不继续看看 View 的 dispatchTouchEvent()。

    view-dispatchTouchEvent.png

    截图中的代码是有删减的,我们重点看看没有删减的代码。
    红框中的三个条件,第一个我就不用说了。

    • (mViewFlags & ENABLED_MASK) == ENABLED
      该条件是判断当前点击的控件是否为 enable,但由于基本 View 都是 enable 的,所以这个条件基本都返回 true。

    • mOnTouchListener.onTouch(this, event)
      即我们调用 setOnTouchListener() 时必须覆盖的方法 onTouch() 的返回值。

    从上述的分析,终于知道「onTouchLinstener - onTouch() 方法优先级高于 onTouchEvent(event) 方法」是怎么来的了吧。

    再来看看 onTouchEvent() view-onTouchEvent.png

    从上面的代码可以明显地看到,只要 View 的 CLICKABLE 和 LONG_CLICKABLE 有一个为 true,那么 onTouchEvent() 就会返回 true 消耗这个事件。CLICKABLE 和 LONG_CLICKABLE 代表 View 可以被点击和长按点击,我们通常都会采用 setOnClickListener() 和 setOnLongClickListener() 做设置。接着在 ACTION_UP 事件中会调用 performClick() 方法,我们看看都做了什么。

    view-performClick.png

    从截图中可以看到,如果 mOnClickListener 不为空,那么它的 onClick() 方法就会调用。

    总结

    本来写到这就结束了,但回顾一遍还是打算给大家稍微总结一下。

    需要总结的小点:
    1、Android 事件分发总是遵循 Activity => ViewGroup => View 的传递顺序;
    2、onTouch() 执行总优先于 onClick()

    原本想用文字总结的,结果发现简书上还有这样一篇神文:Android事件分发机制详解:史上最全面、最易懂,所以直接引用一下其中的图片。

    • Activity 的事件分发示意图
    Activity 的事件分发示意图.png
    • ViewGroup 事件分发示意图
    ViewGroup 事件分发示意图.png
    • View 的事件分发示意图
    View 的事件分发示意图.png
    • 事件分发工作流程总结
    事件分发工作流程总结.png

    相关文章

      网友评论

          本文标题:面试:讲讲 Android 的事件分发机制

          本文链接:https://www.haomeiwen.com/subject/hcshjftx.html