Android 事件分发机制

touch_total.png

事件传递

一个点击事件产生后,传递顺序是:Activity(Window) -> ViewGroup -> View

事件分发过程由dispatchTouchEvent()、onInterceptTouchEvent()和onTouchEvent()三个方法协助完成。

dispatchTouchEvent()

返回值不同则情况不同。

  1. 默认情况:根据当前对象的不同而返回方法不同
对象 返回方法 备注
Activity super.dispatchTouchEvent() 即调用父类ViewGroup的dispatchTouchEvent()
ViewGroup onIntercepTouchEvent() 即调用自身的onIntercepTouchEvent()
View onTouchEvent() 即调用自身的onTouchEvent()
  1. 返回true
  • 消费事件
  • 事件不会往下传递
  • 后续事件(Move、Up)会继续分发到该View
  1. 返回false
  • 不消费事件
  • 事件不会往下传递
  • 将事件回传给父控件的onTouchEvent()处理.(Activity例外:返回false=消费事件)
  • 后续事件(Move、Up)会继续分发到该View(与onTouchEvent()区别)

onTouchEvent()

  1. 返回true
  • 自己处理(消费)该事情
  • 事件停止传递
  • 该事件序列的后续事件(Move、Up)让其处理;
  1. 返回false
  • 不处理(消费)该事件
  • 事件往上传递给父控件的onTouchEvent()处理
  • 当前View不再接受此事件列的其他事件(Move、Up);

onInterceptTouchEvent

onInterceptTouchEvent.png

事件分发机制源码分析

Activity 事件分发机制

从上面分析可以知道,当点击屏幕上的一个事件,首先处理的是Activity。由Activity的dispatchTouchEvent()方法首先拦截。而Activity真正执行事件的是Window。

Activity的dispatchTouchEvent方法。

  public boolean dispatchTouchEvent(MotionEvent ev) {
        //当按钮事件是ACTION_DOWN时候执行,一般我们的事件都是按下开始的,所以这里是true。
        if (ev.getAction() == MotionEvent.ACTION_DOWN) {
            //空方法,无实现.
            onUserInteraction();
        }
        //getWindow将获取PhoneWindow对象。这里调用的是PhoneWindow的superDispatchTouchEvent
        if (getWindow().superDispatchTouchEvent(ev)) {
            return true;
        }
        return onTouchEvent(ev);
    }
  • 首先判断if(ev.getAction() == MotionEvent.ACTION_DOWN) ,一般我们事件都是从按下屏幕开始的,也就是说事件一般情况下都是从ACTION_DOWN开始,所以这里返回true。

  • 返回ture之后执行onUserInteraction():

        /**
         * Called whenever a key, touch, or trackball event is dispatched to the
         * activity.  Implement this method if you wish to know that the user has
         * interacted with the device in some way while your activity is running.
         * This callback and {@link #onUserLeaveHint} are intended to help
         * activities manage status bar notifications intelligently; specifically,
         * for helping activities determine the proper time to cancel a notfication.
         *
         * <p>All calls to your activity's {@link #onUserLeaveHint} callback will
         * be accompanied by calls to {@link #onUserInteraction}.  This
         * ensures that your activity will be told of relevant user activity such
         * as pulling down the notification pane and touching an item there.
         *
         * <p>Note that this callback will be invoked for the touch down action
         * that begins a touch gesture, but may not be invoked for the touch-moved
         * and touch-up actions that follow.
         *
         * @see #onUserLeaveHint()
         */
        public void onUserInteraction() {
        }
    

    onUserInteraction是一个空方法。从注释中可以看出,如果想知道当前Activity中用户和设备进行某种交互,你就要重写该方法。也就是说当Activity处于栈顶的时候,用户的按键操作(home,menu,back等)都会触发改方法。

  • getWindow().superDispatchTouchEvent(ev):

    1. 首先getWindow()返回的是一个Window对象,我们知道Android中Window是一个抽象类,也就是说真正的实现在它的子类里面,而Window的子类只有一个就是大名鼎鼎的PhoneWindow。

    2. 也就是说这里实际调用的是PhoneWindow的superDispatchTouchEvent。

PhoneWindow的superDispatchTouchEvent

    @Override
    public boolean superDispatchTouchEvent(MotionEvent event) {
        return mDecor.superDispatchTouchEvent(event);
    }

这里返回的是mDecor.superDispatchTouchEvent(event),而mDecor是DecorView的对象。DecorView又是Android 的根视图对象,也就是顶层视图。

public boolean superDispatchTouchEvent(MotionEvent event) {
    return super.dispatchTouchEvent(event);
}

DecorView中又执行super.dispatchTouchEvent(event),我们知道DecorView继承于FrameLayout,属于一个ViewGroup。也就是执行了ViewGroup的dispatchTouchEvent()方法。

总结:

  1. 到这里我们可以知道Activity.dispatchTouchEvent()经过调用最后调用的是ViewGroup.dispatchTouchEvent().
  2. Activity.dispatchTouchEvent()如果自定义返回true或者false,改事件都将结束。
  3. 这样调用之后事件将进入ViewGroup中去。

汇总:当一个点击事件发生时,调用顺序如下

  1. 事件最先传到Activity的dispatchTouchEvent()进行事件分发
  2. 调用Window类实现类PhoneWindow的superDispatchTouchEvent()
  3. 调用DecorView的superDispatchTouchEvent()
  4. 最终调用DecorView父类的dispatchTouchEvent(),即ViewGroup的dispatchTouchEvent()

ViwGroup事件分发机制

ViwGroup dispatchTouchEvent方法

   /**
     * {@inheritDoc}
     */
    @Override
    public boolean dispatchTouchEvent(MotionEvent ev) {

        ...
        //处理结果.
        boolean handled = false;
        if (onFilterTouchEventForSecurity(ev)) {
            final int action = ev.getAction();
            final int actionMasked = action & MotionEvent.ACTION_MASK;

            ...

            // Check for interception.
            //注意1:用于判断是否拦截,即interception。
            final boolean intercepted;
            if (actionMasked == MotionEvent.ACTION_DOWN
                    || mFirstTouchTarget != null) {
                //是否设置不拦截
                final boolean disallowIntercept = (mGroupFlags & FLAG_DISALLOW_INTERCEPT) != 0;
                if (!disallowIntercept) {
                    //执行onInterceptTouchEvent方法.
                    intercepted = onInterceptTouchEvent(ev);
                    ev.setAction(action); // restore action in case it was changed
                } else {
                    intercepted = false;
                }
            } else {
                // There are no touch targets and this action is not an initial down
                // so this view group continues to intercept touches.
                intercepted = true;
            }

            // If intercepted, start normal event dispatch. Also if there is already
            // a view that is handling the gesture, do normal event dispatch.
            //如果intercepted拦截
            if (intercepted || mFirstTouchTarget != null) {
                ev.setTargetAccessibilityFocus(false);
            }

            ...
            
            //如果intercepted 返回true,则不会进入这个条件。即没有取消,并且拦截了
            if (!canceled && !intercepted) {

                // If the event is targeting accessiiblity focus we give it to the
                // view that has accessibility focus and if it does not handle it
                // we clear the flag and dispatch the event to all children as usual.
                // We are looking up the accessibility focused host to avoid keeping
                // state since these events are very rare.

                //大致意思是如果设置拦截,则子ViewGroup等将不处理。
                View childWithAccessibilityFocus = ev.isTargetAccessibilityFocus()
                        ? findChildWithAccessibilityFocus() : null;

                if (actionMasked == MotionEvent.ACTION_DOWN
                        || (split && actionMasked == MotionEvent.ACTION_POINTER_DOWN)
                        || actionMasked == MotionEvent.ACTION_HOVER_MOVE) {
                    ...

                    final int childrenCount = mChildrenCount;
                    //当有有child的时候
                    if (newTouchTarget == null && childrenCount != 0) {
                        final float x = ev.getX(actionIndex);
                        final float y = ev.getY(actionIndex);
                        // Find a child that can receive the event.
                        // Scan children from front to back.
                        //查询一个可以接收该事件的Child
                        final ArrayList<View> preorderedList = buildOrderedChildList();
                        final boolean customOrder = preorderedList == null
                                && isChildrenDrawingOrderEnabled();
                        final View[] children = mChildren;
                        for (int i = childrenCount - 1; i >= 0; i--) {
                            final int childIndex = customOrder
                                    ? getChildDrawingOrder(childrenCount, i) : i;
                            final View child = (preorderedList == null)
                                    ? children[childIndex] : preorderedList.get(childIndex);
                            ...

                            //注意2:传入的child有值,将执行child.dispatchTouchEvent(event)
                            if (dispatchTransformedTouchEvent(ev, false, child, idBitsToAssign)) {
                                // Child wants to receive touch within its bounds.
                                //child 想要去接收在这个范围内的touch
                                mLastTouchDownTime = ev.getDownTime();
                                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();
                                newTouchTarget = addTouchTarget(child, idBitsToAssign);
                                alreadyDispatchedToNewTouchTarget = true;
                                break;
                            }

                           ...
                        }
                        if (preorderedList != null) preorderedList.clear();
                    }

                    ...
                }
            }

            // Dispatch to touch targets.
            if (mFirstTouchTarget == null) {
                // No touch targets so treat this as an ordinary view.
                //注意3:如果拦截了,则这个child为空,则会调用super.dispatchTouchEvent(event),从而执行onTouchEvent().
                handled = dispatchTransformedTouchEvent(ev, canceled, null,
                        TouchTarget.ALL_POINTER_IDS);
            } else {
                ...
                
            }
            ...
        }
        if (!handled && mInputEventConsistencyVerifier != null) {
            mInputEventConsistencyVerifier.onUnhandledEvent(ev, 1);
        }
        return handled;
    }
  1. 注意1:判断是否拦截。

    public boolean onInterceptTouchEvent(MotionEvent ev) {
            return false;
     }
    

    默认返回false,表示不拦截,则!intercepted为true进入条件语句,关注注意点2,如果ViewGroup重写该方法并返回true,则不会进入条件判断,则直接关注注意点3.

  2. 注意2:当ViewGroup不拦截的时候,则会遍历ViewGroup的Child,取得一个可接受到事件的子View通过调用dispatchTransformedTouchEvent去执行child.dispatchTouchEvent(event)。

  3. 注意3:如果ViewGroup拦截了,则直接dispatchTransformedTouchEvent 中的super.dispatchTouchEvent(event),则会执行View的dispatchTouchEvent中的onTouch方法,也就是执行改ViewGroup的onTouch方法。

    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;
            }
    
            ...
            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);
            }
    
            ...
            return handled;
        }
    

    结论

    • Android事件分发是先传递到ViewGroup,再由ViewGroup传递到View
    • 在ViewGroup中通过onInterceptTouchEvent()对事件传递进行拦截:
      1. onInterceptTouchEvent方法返回true代表拦截事件,即不允许事件继续向子View传递;
      2. 返回false代表不拦截事件,即允许事件继续向子View传递;(默认返回false)
      3. 子View中如果将传递的事件消费掉,ViewGroup中将无法接收到任何事件。

View 事件分发机制

View dispatchTouchEvent

public boolean dispatchTouchEvent(MotionEvent event) {
    ...

    if (onFilterTouchEventForSecurity(event)) {
        //noinspection SimplifiableIfStatement
        ListenerInfo li = mListenerInfo;
        //满足这3个条件,result才返回true。
        if (li != null && li.mOnTouchListener != null
                && (mViewFlags & ENABLED_MASK) == ENABLED
                && li.mOnTouchListener.onTouch(this, event)) {
            result = true;
        }

        //如果result 为true则不会执行onTouchEvent()。
        if (!result && onTouchEvent(event)) {
            result = true;
        }
    }
    ...

    return result;
}

这里如果想要执行onTouchEvent(),则必须让result为true,而result为true需满足3个条件。

  1. li.mOnTouchListener != null: mOnTouchListener 事件不能为空:mOnTouchListener 事件是在setOnTouchListener方法里面设置:

    public void setOnTouchListener(OnTouchListener l) {
            getListenerInfo().mOnTouchListener = l;
     }
    

    也就是说必须在View中设置setOnTouchListener(l)事件。

  2. (mViewFlags & ENABLED_MASK) == ENABLED: 控件必须是enable,view默认的是true。

  3. li.mOnTouchListener.onTouch(this, event): onTouch方法的返回值。

    • onTouch 返回true时,就会让上述三个条件全部成立,从而整个方法直接返回true。则不会执行onTouchEvent().
    • onTouch 返回false时,则会执行onTouchEvent().

    回调控件注册Touch事件时的onTouch方法

    //手动调用设置
    button.setOnTouchListener(new OnTouchListener() {  
        @Override  
        public boolean onTouch(View v, MotionEvent event) {  
          return false;  
      }  
    });
    

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

推荐阅读更多精彩内容