Android触摸屏事件派发机制详解与源码分析二(ViewGroup篇)

1 背景

还记得前一篇《Android触摸屏事件派发机制详解与源码分析一(View篇)》中关于透过源码继续进阶实例验证模块中存在的点击Button却触发了LinearLayout的事件疑惑吗?当时说了,在那一篇咱们只讨论View的触摸事件派发机制,这个疑惑留在了这一篇解释,也就是ViewGroup的事件派发机制。

PS:阅读本篇前建议先查看前一篇《Android触摸屏事件派发机制详解与源码分析一(View篇)》,这一篇承接上一篇。

关于View与ViewGroup的区别在前一篇的Android 5.1.1(API 22) View触摸屏事件传递源码分析部分写在前面的话里面有详细介绍。其实你只要记住类似Button这种控件都是View的子类,类似布局这种控件都是ViewGroup的子类,而ViewGroup又是View的子类而已。具体查阅《Android触摸屏事件派发机制详解与源码分析一(View篇)》

2 基础实例现象

2-1 例子

这个例子布局等还和上一篇的例子相似,只是重写了Button和LinearLayout而已,所以效果图不在提供,具体参见上一篇。

首先我们简单的自定义一个Button(View的子类),再自定义一个LinearLayout(ViewGroup的子类),其实没有自定义任何属性,只是重写部分方法(添加了打印,方便查看)而已,如下:

[html] view plain copy

  1. public class TestButton extends Button {
  2. public TestButton(Context context, AttributeSet attrs) {
  3. super(context, attrs);
  4. }
  5. @Override
  6. public boolean dispatchTouchEvent(MotionEvent event) {
  7. Log.i(null, "TestButton dispatchTouchEvent-- action=" + event.getAction());
  8. return super.dispatchTouchEvent(event);
  9. }
  10. @Override
  11. public boolean onTouchEvent(MotionEvent event) {
  12. Log.i(null, "TestButton onTouchEvent-- action=" + event.getAction());
  13. return super.onTouchEvent(event);
  14. }
  15. }

[html] view plain copy

  1. public class TestLinearLayout extends LinearLayout {
  2. public TestLinearLayout(Context context, AttributeSet attrs) {
  3. super(context, attrs);
  4. }
  5. @Override
  6. public boolean onInterceptTouchEvent(MotionEvent ev) {
  7. Log.i(null, "TestLinearLayout onInterceptTouchEvent-- action=" + ev.getAction());
  8. return super.onInterceptTouchEvent(ev);
  9. }
  10. @Override
  11. public boolean dispatchTouchEvent(MotionEvent event) {
  12. Log.i(null, "TestLinearLayout dispatchTouchEvent-- action=" + event.getAction());
  13. return super.dispatchTouchEvent(event);
  14. }
  15. @Override
  16. public boolean onTouchEvent(MotionEvent event) {
  17. Log.i(null, "TestLinearLayout onTouchEvent-- action=" + event.getAction());
  18. return super.onTouchEvent(event);
  19. }
  20. }

如上两个控件很简单吧,不解释,继续看其他代码:

[html] view plain copy

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <com.zzci.light.TestLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:gravity="center"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent"
  7. android:id="@+id/mylayout">
  8. <com.zzci.light.TestButton
  9. android:id="@+id/my_btn"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:text="click test"/>
  13. </com.zzci.light.TestLinearLayout>

[html] view plain copy

  1. public class ListenerActivity extends Activity implements View.OnTouchListener, View.OnClickListener {
  2. private TestLinearLayout mLayout;
  3. private TestButton mButton;
  4. @Override
  5. public void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.main);
  8. mLayout = (TestLinearLayout) this.findViewById(R.id.mylayout);
  9. mButton = (TestButton) this.findViewById(R.id.my_btn);
  10. mLayout.setOnTouchListener(this);
  11. mButton.setOnTouchListener(this);
  12. mLayout.setOnClickListener(this);
  13. mButton.setOnClickListener(this);
  14. }
  15. @Override
  16. public boolean onTouch(View v, MotionEvent event) {
  17. Log.i(null, "OnTouchListener--onTouch-- action="+event.getAction()+" --"+v);
  18. return false;
  19. }
  20. @Override
  21. public void onClick(View v) {
  22. Log.i(null, "OnClickListener--onClick--"+v);
  23. }
  24. }

到此基础示例的代码编写完成。没有啥难度,很简单易懂,不多解释了。

2-2 运行现象

当直接点击Button时打印现象如下:

[html] view plain copy

  1. TestLinearLayout dispatchTouchEvent-- action=0
  2. TestLinearLayout onInterceptTouchEvent-- action=0
  3. TestButton dispatchTouchEvent-- action=0
  4. OnTouchListener--onTouch-- action=0 --com.zzci.light.TestButton
  5. TestButton onTouchEvent-- action=0
  6. TestLinearLayout dispatchTouchEvent-- action=1
  7. TestLinearLayout onInterceptTouchEvent-- action=1
  8. TestButton dispatchTouchEvent-- action=1
  9. OnTouchListener--onTouch-- action=1 --com.zzci.light.TestButton
  10. TestButton onTouchEvent-- action=1
  11. OnClickListener--onClick--com.zzci.light.TestButton

分析:你会发现这个结果好惊讶吧,点击了Button却先执行了TestLinearLayout(ViewGroup)的dispatchTouchEvent,接着执行

TestLinearLayout(ViewGroup)的onInterceptTouchEvent,接着执行TestButton(TestLinearLayout包含的成员View)的dispatchTouchEvent

,接着就是View触摸事件的分发流程,上一篇已经讲过了。也就是说当点击View时事件派发每一个down,up的action顺序是先触发最父级控件

(这里为LinearLayout)的dispatchTouchEvent->onInterceptTouchEvent->然后向前一级传递(这里就是传递到Button View)。

那么继续看,当直接点击除Button以外的其他部分时打印如下:

[html] view plain copy

  1. TestLinearLayout dispatchTouchEvent-- action=0
  2. TestLinearLayout onInterceptTouchEvent-- action=0
  3. OnTouchListener--onTouch-- action=0 --com.zzci.light.TestLinearLayout
  4. TestLinearLayout onTouchEvent-- action=0
  5. TestLinearLayout dispatchTouchEvent-- action=1
  6. OnTouchListener--onTouch-- action=1 --com.zzci.light.TestLinearLayout
  7. TestLinearLayout onTouchEvent-- action=1
  8. OnClickListener--onClick--com.zzci.light.TestLinearLayout

分析:你会发现一个奇怪的现象,派发ACTION_DOWN(action=0)事件时顺序为dispatchTouchEvent->onInterceptTouchEvent->onTouch

->onTouchEvent,而接着派发ACTION_UP(action=1)事件时与上面顺序不同的时竟然没触发onInterceptTouchEvent方法。这是为啥呢?

我也纳闷,那就留着下面分析源码再找答案吧,先记住这个问题。

有了上面这个例子你是不是发现包含ViewGroup与View的事件触发有些相似又有很大差异吧(PS:在Android中继承View实现的控件已经是最小单位了,也即在XML布局等操作中不能再包含子项了,而继承ViewGroup实现的控件通常不是最小单位,可以包含不确定数目的子项)。具体差异是啥呢?咱们类似上篇一样,带着这个实例疑惑去看源码找答案吧。

3 Android 5.1.1(API 22) ViewGroup触摸屏事件传递源码分析

通过上面例子的打印我们可以确定分析源码的顺序,那就开始分析呗。

3-1 从ViewGroup的dispatchTouchEvent方法说起

前一篇的3-2小节说在Android中你只要触摸控件首先都会触发控件的dispatchTouchEvent方法(其实这个方法一般都没在具体的控件类中,而在他的父类View中)。这其实是思维单单局限在View的角度去看待的,这里通过上面的例子你是否发现触摸控件会先从他的父级dispatchTouchEvent方法开始派发呢?是的,所以咱们先从ViewGroup的dispatchTouchEvent方法说起,如下:

[html] view plain copy

  1. public boolean dispatchTouchEvent(MotionEvent ev) {
  2. if (mInputEventConsistencyVerifier != null) {
  3. mInputEventConsistencyVerifier.onTouchEvent(ev, 1);
  4. }
  5. // If the event targets the accessibility focused view and this is it, start
  6. // normal event dispatch. Maybe a descendant is what will handle the click.
  7. if (ev.isTargetAccessibilityFocus() && isAccessibilityFocusedViewOrHost()) {
  8. ev.setTargetAccessibilityFocus(false);
  9. }
  10. boolean handled = false;
  11. if (onFilterTouchEventForSecurity(ev)) {
  12. final int action = ev.getAction();
  13. final int actionMasked = action & MotionEvent.ACTION_MASK;
  14. // Handle an initial down.
  15. if (actionMasked == MotionEvent.ACTION_DOWN) {
  16. // Throw away all previous state when starting a new touch gesture.
  17. // The framework may have dropped the up or cancel event for the previous gesture
  18. // due to an app switch, ANR, or some other state change.
  19. cancelAndClearTouchTargets(ev);
  20. resetTouchState();
  21. }
  22. // Check for interception.
  23. final boolean intercepted;
  24. if (actionMasked == MotionEvent.ACTION_DOWN
  25. || mFirstTouchTarget != null) {
  26. final boolean disallowIntercept = (mGroupFlags & FLAG_DISALLOW_INTERCEPT) != 0;
  27. if (!disallowIntercept) {
  28. intercepted = onInterceptTouchEvent(ev);
  29. ev.setAction(action); // restore action in case it was changed
  30. } else {
  31. intercepted = false;
  32. }
  33. } else {
  34. // There are no touch targets and this action is not an initial down
  35. // so this view group continues to intercept touches.
  36. intercepted = true;
  37. }
  38. // If intercepted, start normal event dispatch. Also if there is already
  39. // a view that is handling the gesture, do normal event dispatch.
  40. if (intercepted || mFirstTouchTarget != null) {
  41. ev.setTargetAccessibilityFocus(false);
  42. }
  43. // Check for cancelation.
  44. final boolean canceled = resetCancelNextUpFlag(this)
  45. || actionMasked == MotionEvent.ACTION_CANCEL;
  46. // Update list of touch targets for pointer down, if needed.
  47. final boolean split = (mGroupFlags & FLAG_SPLIT_MOTION_EVENTS) != 0;
  48. TouchTarget newTouchTarget = null;
  49. boolean alreadyDispatchedToNewTouchTarget = false;
  50. if (!canceled && !intercepted) {
  51. // If the event is targeting accessiiblity focus we give it to the
  52. // view that has accessibility focus and if it does not handle it
  53. // we clear the flag and dispatch the event to all children as usual.
  54. // We are looking up the accessibility focused host to avoid keeping
  55. // state since these events are very rare.
  56. View childWithAccessibilityFocus = ev.isTargetAccessibilityFocus()
  57. ? findChildWithAccessibilityFocus() : null;
  58. if (actionMasked == MotionEvent.ACTION_DOWN
  59. || (split && actionMasked == MotionEvent.ACTION_POINTER_DOWN)
  60. || actionMasked == MotionEvent.ACTION_HOVER_MOVE) {
  61. final int actionIndex = ev.getActionIndex(); // always 0 for down
  62. final int idBitsToAssign = split ? 1 << ev.getPointerId(actionIndex)
  63. : TouchTarget.ALL_POINTER_IDS;
  64. // Clean up earlier touch targets for this pointer id in case they
  65. // have become out of sync.
  66. removePointersFromTouchTargets(idBitsToAssign);
  67. final int childrenCount = mChildrenCount;
  68. if (newTouchTarget == null && childrenCount != 0) {
  69. final float x = ev.getX(actionIndex);
  70. final float y = ev.getY(actionIndex);
  71. // Find a child that can receive the event.
  72. // Scan children from front to back.
  73. final ArrayList<View> preorderedList = buildOrderedChildList();
  74. final boolean customOrder = preorderedList == null
  75. && isChildrenDrawingOrderEnabled();
  76. final View[] children = mChildren;
  77. for (int i = childrenCount - 1; i >= 0; i--) {
  78. final int childIndex = customOrder
  79. ? getChildDrawingOrder(childrenCount, i) : i;
  80. final View child = (preorderedList == null)
  81. ? children[childIndex] : preorderedList.get(childIndex);
  82. // If there is a view that has accessibility focus we want it
  83. // to get the event first and if not handled we will perform a
  84. // normal dispatch. We may do a double iteration but this is
  85. // safer given the timeframe.
  86. if (childWithAccessibilityFocus != null) {
  87. if (childWithAccessibilityFocus != child) {
  88. continue;
  89. }
  90. childWithAccessibilityFocus = null;
  91. i = childrenCount - 1;
  92. }
  93. if (!canViewReceivePointerEvents(child)
  94. || !isTransformedTouchPointInView(x, y, child, null)) {
  95. ev.setTargetAccessibilityFocus(false);
  96. continue;
  97. }
  98. newTouchTarget = getTouchTarget(child);
  99. if (newTouchTarget != null) {
  100. // Child is already receiving touch within its bounds.
  101. // Give it the new pointer in addition to the ones it is handling.
  102. newTouchTarget.pointerIdBits |= idBitsToAssign;
  103. break;
  104. }
  105. resetCancelNextUpFlag(child);
  106. if (dispatchTransformedTouchEvent(ev, false, child, idBitsToAssign)) {
  107. // Child wants to receive touch within its bounds.
  108. mLastTouchDownTime = ev.getDownTime();
  109. if (preorderedList != null) {
  110. // childIndex points into presorted list, find original index
  111. for (int j = 0; j < childrenCount; j++) {
  112. if (children[childIndex] == mChildren[j]) {
  113. mLastTouchDownIndex = j;
  114. break;
  115. }
  116. }
  117. } else {
  118. mLastTouchDownIndex = childIndex;
  119. }
  120. mLastTouchDownX = ev.getX();
  121. mLastTouchDownY = ev.getY();
  122. newTouchTarget = addTouchTarget(child, idBitsToAssign);
  123. alreadyDispatchedToNewTouchTarget = true;
  124. break;
  125. }
  126. // The accessibility focus didn‘t handle the event, so clear
  127. // the flag and do a normal dispatch to all children.
  128. ev.setTargetAccessibilityFocus(false);
  129. }
  130. if (preorderedList != null) preorderedList.clear();
  131. }
  132. if (newTouchTarget == null && mFirstTouchTarget != null) {
  133. // Did not find a child to receive the event.
  134. // Assign the pointer to the least recently added target.
  135. newTouchTarget = mFirstTouchTarget;
  136. while (newTouchTarget.next != null) {
  137. newTouchTarget = newTouchTarget.next;
  138. }
  139. newTouchTarget.pointerIdBits |= idBitsToAssign;
  140. }
  141. }
  142. }
  143. // Dispatch to touch targets.
  144. if (mFirstTouchTarget == null) {
  145. // No touch targets so treat this as an ordinary view.
  146. handled = dispatchTransformedTouchEvent(ev, canceled, null,
  147. TouchTarget.ALL_POINTER_IDS);
  148. } else {
  149. // Dispatch to touch targets, excluding the new touch target if we already
  150. // dispatched to it.  Cancel touch targets if necessary.
  151. TouchTarget predecessor = null;
  152. TouchTarget target = mFirstTouchTarget;
  153. while (target != null) {
  154. final TouchTarget next = target.next;
  155. if (alreadyDispatchedToNewTouchTarget && target == newTouchTarget) {
  156. handled = true;
  157. } else {
  158. final boolean cancelChild = resetCancelNextUpFlag(target.child)
  159. || intercepted;
  160. if (dispatchTransformedTouchEvent(ev, cancelChild,
  161. target.child, target.pointerIdBits)) {
  162. handled = true;
  163. }
  164. if (cancelChild) {
  165. if (predecessor == null) {
  166. mFirstTouchTarget = next;
  167. } else {
  168. predecessor.next = next;
  169. }
  170. target.recycle();
  171. target = next;
  172. continue;
  173. }
  174. }
  175. predecessor = target;
  176. target = next;
  177. }
  178. }
  179. // Update list of touch targets for pointer up or cancel, if needed.
  180. if (canceled
  181. || actionMasked == MotionEvent.ACTION_UP
  182. || actionMasked == MotionEvent.ACTION_HOVER_MOVE) {
  183. resetTouchState();
  184. } else if (split && actionMasked == MotionEvent.ACTION_POINTER_UP) {
  185. final int actionIndex = ev.getActionIndex();
  186. final int idBitsToRemove = 1 << ev.getPointerId(actionIndex);
  187. removePointersFromTouchTargets(idBitsToRemove);
  188. }
  189. }
  190. if (!handled && mInputEventConsistencyVerifier != null) {
  191. mInputEventConsistencyVerifier.onUnhandledEvent(ev, 1);
  192. }
  193. return handled;
  194. }

我勒个去!!!这比View的dispatchTouchEvent方法长很多啊,那就只关注重点分析吧。

第一步,17-24行,对ACTION_DOWN进行处理。

因为ACTION_DOWN是一系列事件的开端,当是ACTION_DOWN时进行一些初始化操作,从上面源码中注释也可以看出来,清除以往的Touch状态然后开始新的手势。在这里你会发现cancelAndClearTouchTargets(ev)方法中有一个非常重要的操作就是将mFirstTouchTarget设置为了null(刚开始分析大眼瞄一眼没留意,结果越往下看越迷糊,所以这个是分析ViewGroup的dispatchTouchEvent方法第一步中重点要记住的一个地方),接着在resetTouchState()方法中重置Touch状态标识。

第二步,26-47行,检查是否要拦截。

在dispatchTouchEvent(MotionEvent ev)这段代码中使用变量intercepted来标记ViewGroup是否拦截Touch事件的传递,该变量类似第一步的mFirstTouchTarget变量,在后续代码中起着很重要的作用。if (actionMasked == MotionEvent.ACTION_DOWN || mFirstTouchTarget != null)这一条判断语句说明当事件为ACTION_DOWN或者mFirstTouchTarget不为null(即已经找到能够接收touch事件的目标组件)时if成立,否则if不成立,然后将intercepted设置为true,也即拦截事件。当当事件为ACTION_DOWN或者mFirstTouchTarget不为null时判断disallowIntercept(禁止拦截)标志位,而这个标记在ViewGroup中提供了public的设置方法,如下:

[html] view plain copy

  1. public void requestDisallowInterceptTouchEvent(boolean disallowIntercept) {
  2. if (disallowIntercept == ((mGroupFlags & FLAG_DISALLOW_INTERCEPT) != 0)) {
  3. // We‘re already in this state, assume our ancestors are too
  4. return;
  5. }
  6. if (disallowIntercept) {
  7. mGroupFlags |= FLAG_DISALLOW_INTERCEPT;
  8. } else {
  9. mGroupFlags &= ~FLAG_DISALLOW_INTERCEPT;
  10. }
  11. // Pass it up to our parent
  12. if (mParent != null) {
  13. mParent.requestDisallowInterceptTouchEvent(disallowIntercept);
  14. }
  15. }

所以你可以在其他地方调用requestDisallowInterceptTouchEvent(boolean disallowIntercept)方法,从而禁止执行是否需要拦截的判断。

当disallowIntercept为true(禁止拦截判断)时则intercepted直接设置为false,否则调用onInterceptTouchEvent(ev)方法,然后将结果赋值给

intercepted。那就来看下ViewGroup与众不同与View特有的onInterceptTouchEvent方法,如下:

[html] view plain copy

  1. public boolean onInterceptTouchEvent(MotionEvent ev) {
  2. return false;
  3. }

看见了吧,默认的onInterceptTouchEvent方法只是返回了一个false,也即intercepted=false。所以可以说明上面例子的部分打印

(dispatchTouchEvent->onInterceptTouchEvent->onTouchEvent),这里很明显表明在ViewGroup的dispatchTouchEvent()中默认

(不在其他地方调运requestDisallowInterceptTouchEvent方法设置禁止拦截标记)首先调用了onInterceptTouchEvent()方法。

第三步,49-51行,检查cancel。

通过标记和action检查cancel,然后将结果赋值给局部boolean变量canceled。

第四步,53-函数结束,事件分发。

54行首先可以看见获取一个boolean变量标记split来标记,默认是true,作用是是否把事件分发给多个子View,这个同样在ViewGroup中提供了public的方法设置,如下:

[html] view plain copy

  1. public void setMotionEventSplittingEnabled(boolean split) {
  2. // TODO Applications really shouldn‘t change this setting mid-touch event,
  3. // but perhaps this should handle that case and send ACTION_CANCELs to any child views
  4. // with gestures in progress when this is changed.
  5. if (split) {
  6. mGroupFlags |= FLAG_SPLIT_MOTION_EVENTS;
  7. } else {
  8. mGroupFlags &= ~FLAG_SPLIT_MOTION_EVENTS;
  9. }
  10. }

接着57行if (!canceled && !intercepted)判断表明,事件不是ACTION_CANCEL并且ViewGroup的拦截标志位intercepted为false(不拦截)则会进入

其中。事件分发步骤中关于ACTION_DOWN的特殊处理

接着67行这个很大的if语句if (actionMasked == MotionEvent.ACTION_DOWN || (split && actionMasked == MotionEvent.ACTION_POINTER_DOWN) || 

actionMasked == MotionEvent.ACTION_HOVER_MOVE)处理ACTION_DOWN事件,这个环节比较繁琐,也比较重要,如下具体分析。

在79行判断了childrenCount个数是否不为0,然后接着在84行拿到了子View的list集合preorderedList;接着在88行通过一个for循环i从childrenCount - 1开始遍历到0,倒序遍历所有的子view,这是因为preorderedList中的顺序是按照addView或者XML布局文件中的顺序来的,后addView添加的子View,会因为Android的UI后刷新机制显示在上层;假如点击的地方有两个子View都包含的点击的坐标,那么后被添加到布局中的那个子view会先响应事件;这样其实也是符合人的思维方式的,因为后被添加的子view会浮在上层,所以我们去点击的时候一般都会希望点击最上层的那个组件先去响应事件。

接着在106到112行通过getTouchTarget去查找当前子View是否在mFirstTouchTarget.next这条target链中的某一个targe中,如果在则返回这个target,否则返回null。在这段代码的if判断通过说明找到了接收Touch事件的子View,即newTouchTarget,那么,既然已经找到了,所以执行break跳出for循环。如果没有break则继续向下执行走到115行开始到134行,这里你可以看见一段if判断的代码if (dispatchTransformedTouchEvent(ev, false, child, idBitsToAssign)),这个被if的大括弧括起来的一段代码很重要,具体解释如下:

调用方法dispatchTransformedTouchEvent()将Touch事件传递给特定的子View。该方法十分重要,在该方法中为一个递归调用,会递归调用dispatchTouchEvent()方法。在dispatchTouchEvent()中如果子View为ViewGroup并且Touch没有被拦截那么递归调用dispatchTouchEvent(),如果子View为View那么就会调用其onTouchEvent()。dispatchTransformedTouchEvent方法如果返回true则表示子View消费掉该事件,同时进入

该if判断。满足if语句后重要的操作有:

  • 给newTouchTarget赋值;
  • 给alreadyDispatchedToNewTouchTarget赋值为true;
  • 执行break,因为该for循环遍历子View判断哪个子View接受Touch事件,既然已经找到了就跳出该外层for循环;

如果115行if判断中的dispatchTransformedTouchEvent()方法返回false,即子View的onTouchEvent返回false(即Touch事件未被消费),那么就不满足该if条件,也就无法执行addTouchTarget(),从而导致mFirstTouchTarget为null(没法对mFirstTouchTarget赋值,因为上面分析了mFirstTouchTarget一进来是ACTION_DOWN就置位为null了),那么该子View就无法继续处理ACTION_MOVE事件和ACTION_UP事件(28行的判断为false,也即intercepted=true了,所以之后一系列判断无法通过)。

如果115行if判断中的dispatchTransformedTouchEvent()方法返回true,即子View的onTouchEvent返回true(即Touch事件被消费),那么就满足该if条件,从而mFirstTouchTarget不为null。

继续看143行的判断if (newTouchTarget == null && mFirstTouchTarget != null)。该if表示经过前面的for循环没有找到子View接收Touch事件并且之前的mFirstTouchTarget不为空则为真,然后newTouchTarget指向了最初的TouchTarget。

通过上面67到157行关于事件分发步骤中ACTION_DOWN的特殊处理可以发现,对于此处ACTION_DOWN的处理具体体现在dispatchTransformedTouchEvent()方法,该方法返回值具备如下特征:

return description set
true 事件被消费 mFirstTouchTarget!=null
false 事件未被消费 mFirstTouchTarget==null

因为在dispatchTransformedTouchEvent()会调用递归调用dispatchTouchEvent()和onTouchEvent(),所以dispatchTransformedTouchEvent()的返回值实际上是由onTouchEvent()决定的。简单地说onTouchEvent()是否消费了Touch事件的返回值决定了dispatchTransformedTouchEvent()的返回值,从而决定mFirstTouchTarget是否为null,进一步决定了ViewGroup是否处理Touch事件,这一点在160行开始的代码中有体现。如下分析事件分发步骤中关于ACTION_DOWN处理之后的其他处理逻辑,也即160行开始剩余的逻辑。

事件分发步骤中关于ACTION_DOWN处理之后的其他处理逻辑

可以看到,如果派发的事件不是ACTION_DOWN就不会经过上面的流程,而是直接从此处开始执行。上面说了,经过上面对于ACTION_DOWN的处理后mFirstTouchTarget可能为null或者不为null。所以可以看见161行代码if (mFirstTouchTarget == null)与else判断了mFirstTouchTarget值是否为null的情况,完全符合如上分析。那我们分情况继续分析一下:

当161行if判断的mFirstTouchTarget为null时,也就是说Touch事件未被消费,即没有找到能够消费touch事件的子组件或Touch事件被拦截了,则调用ViewGroup的dispatchTransformedTouchEvent()方法处理Touch事件(和普通View一样),即子View没有消费Touch事件,那么子View的上层ViewGroup才会调用其onTouchEvent()处理Touch事件。具体就是在调用dispatchTransformedTouchEvent()时第三个参数为null,关于dispatchTransformedTouchEvent方法下面会分析,暂时先记住就行。

这下再回想上面例子,点击Button时为啥触发了Button的一系列touch方法而没有触发父级LinearLayout的touch方法的疑惑?明白了吧?

子view对于Touch事件处理返回true那么其上层的ViewGroup就无法处理Touch事件了,子view对于Touch事件处理返回false那么其上层的ViewGroup才可以处理Touch事件。

当161行if判断的mFirstTouchTarget不为null时,也就是说找到了可以消费Touch事件的子View且后续Touch事件可以传递到该子View。可以看见在源码的else中对于非ACTION_DOWN事件继续传递给目标子组件进行处理,依然是递归调用dispatchTransformedTouchEvent()方法来实现的处理。

到此ViewGroup的dispatchTouchEvent方法分析完毕。

上面说了ViewGroup的dispatchTouchEvent方法详细情况,也知道在其中可能会执行onInterceptTouchEvent方法,所以接下来咱们先简单分析一下这个方法。

3-2 说说ViewGroup的dispatchTouchEvent中可能执行的onInterceptTouchEvent方法

如下系统源码:

[html] view plain copy

  1. public boolean onInterceptTouchEvent(MotionEvent ev) {
  2. return false;
  3. }

看到了吧,这个方法算是ViewGroup不同于View特有的一个事件派发调运方法。在源码中可以看到这个方法实现很简单,但是有一堆注释。其实上面

分析了,如果ViewGroup的onInterceptTouchEvent返回false就不阻止事件继续传递派发,否则阻止传递派发。

对了,还记得在dispatchTouchEvent方法中除过可能执行的onInterceptTouchEvent以外在后面派发事件时执行的dispatchTransformedTouchEvent方法吗?上面分析dispatchTouchEvent时说了下面会仔细分析,那么现在就来继续看看这个方法吧。

3-3 继续说说ViewGroup的dispatchTouchEvent中执行的dispatchTransformedTouchEvent方法

ViewGroup的dispatchTransformedTouchEvent方法系统源码如下:

[html] view plain copy

  1. private boolean dispatchTransformedTouchEvent(MotionEvent event, boolean cancel,
  2. View child, int desiredPointerIdBits) {
  3. final boolean handled;
  4. // Canceling motions is a special case.  We don‘t need to perform any transformations
  5. // or filtering.  The important part is the action, not the contents.
  6. final int oldAction = event.getAction();
  7. if (cancel || oldAction == MotionEvent.ACTION_CANCEL) {
  8. event.setAction(MotionEvent.ACTION_CANCEL);
  9. if (child == null) {
  10. handled = super.dispatchTouchEvent(event);
  11. } else {
  12. handled = child.dispatchTouchEvent(event);
  13. }
  14. event.setAction(oldAction);
  15. return handled;
  16. }
  17. // Calculate the number of pointers to deliver.
  18. final int oldPointerIdBits = event.getPointerIdBits();
  19. final int newPointerIdBits = oldPointerIdBits & desiredPointerIdBits;
  20. // If for some reason we ended up in an inconsistent state where it looks like we
  21. // might produce a motion event with no pointers in it, then drop the event.
  22. if (newPointerIdBits == 0) {
  23. return false;
  24. }
  25. // If the number of pointers is the same and we don‘t need to perform any fancy
  26. // irreversible transformations, then we can reuse the motion event for this
  27. // dispatch as long as we are careful to revert any changes we make.
  28. // Otherwise we need to make a copy.
  29. final MotionEvent transformedEvent;
  30. if (newPointerIdBits == oldPointerIdBits) {
  31. if (child == null || child.hasIdentityMatrix()) {
  32. if (child == null) {
  33. handled = super.dispatchTouchEvent(event);
  34. } else {
  35. final float offsetX = mScrollX - child.mLeft;
  36. final float offsetY = mScrollY - child.mTop;
  37. event.offsetLocation(offsetX, offsetY);
  38. handled = child.dispatchTouchEvent(event);
  39. event.offsetLocation(-offsetX, -offsetY);
  40. }
  41. return handled;
  42. }
  43. transformedEvent = MotionEvent.obtain(event);
  44. } else {
  45. transformedEvent = event.split(newPointerIdBits);
  46. }
  47. // Perform any necessary transformations and dispatch.
  48. if (child == null) {
  49. handled = super.dispatchTouchEvent(transformedEvent);
  50. } else {
  51. final float offsetX = mScrollX - child.mLeft;
  52. final float offsetY = mScrollY - child.mTop;
  53. transformedEvent.offsetLocation(offsetX, offsetY);
  54. if (! child.hasIdentityMatrix()) {
  55. transformedEvent.transform(child.getInverseMatrix());
  56. }
  57. handled = child.dispatchTouchEvent(transformedEvent);
  58. }
  59. // Done.
  60. transformedEvent.recycle();
  61. return handled;
  62. }

看到了吧,这个方法也算是ViewGroup不同于View特有的一个事件派发调运方法,而且奇葩的就是这个方法也很长。那也继续分析吧。。。

上面分析了,在dispatchTouchEvent()中调用dispatchTransformedTouchEvent()将事件分发给子View处理。在此我们需要重点分析该方法的第三个参数(View child)。在dispatchTouchEvent()中多次调用了dispatchTransformedTouchEvent()方法,而且有时候第三个参数为null,有时又不是,他们到底有啥区别呢?这段源码中很明显展示了结果。在dispatchTransformedTouchEvent()源码中可以发现多次对于child是否为null的判断,并且均做出如下类似的操作。其中,当child == null时会将Touch事件传递给该ViewGroup自身的dispatchTouchEvent()处理,即super.dispatchTouchEvent(event)(也就是View的这个方法,因为ViewGroup的父类是View);当child != null时会调用该子view(当然该view可能是一个View也可能是一个ViewGroup)的dispatchTouchEvent(event)处理,即child.dispatchTouchEvent(event)。别的代码几乎没啥需要具体注意分析的。

所以,到此你也会发现ViewGroup没有重写View的onTouchEvent(MotionEvent event) 方法,也就是说接下来的调运关系就是上一篇分析的流程了,这里不在多说。

好了,到此你是不是即明白了上面实例演示的代码结果,也明白了上一篇最后升级实例验证模块留下的点击Button触发了LinearLayout的一些疑惑呢?答案自然是必须的!

4 Android 5.1.1(API 22) ViewGroup触摸屏事件传递总结

如上就是所有ViewGroup关于触摸屏事件的传递机制源码分析与实例演示。具体总结如下:

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

好了,至此整个View与ViewGroup的触摸屏事件派发机制分析完毕。关于他们的事件是哪派发来的可以继续进阶的阅读下一篇《Android触摸屏事件派发机制详解与源码分析三(Activity篇)》

时间: 2024-07-30 13:46:27

Android触摸屏事件派发机制详解与源码分析二(ViewGroup篇)的相关文章

Android触摸屏事件派发机制详解与源码分析三(Activity篇)

PS一句:最终还是选择CSDN来整理发表这几年的知识点,该文章平行迁移到CSDN.因为CSDN也支持MarkDown语法了,牛逼啊! [工匠若水 http://blog.csdn.net/yanbober] 该篇承接上一篇<Android触摸屏事件派发机制详解与源码分析二(ViewGroup篇)>,阅读本篇之前建议先阅读. 1 背景 还记得前面两篇从Android的基础最小元素控件(View)到ViewGroup控件的触摸屏事件分发机制分析吗?你可能看完会有疑惑,View的事件是ViewGro

Android触摸屏事件派发机制详解与源码分析

请看下面三篇博客,思路还是蛮清晰的,不过还是没写自定义控件系列哥们的思路清晰: Android触摸屏事件派发机制详解与源码分析一(View篇) http://blog.csdn.net/yanbober/article/details/45887547 Android触摸屏事件派发机制详解与源码分析二(ViewGroup篇) http://blog.csdn.net/yanbober/article/details/45912661 Android触摸屏事件派发机制详解与源码分析三(Activi

Android ViewGroup触摸屏事件派发机制详解与源码分析

PS一句:最终还是选择CSDN来整理发表这几年的知识点,该文章平行迁移到CSDN.因为CSDN也支持MarkDown语法了,牛逼啊! [工匠若水 http://blog.csdn.net/yanbober] 该篇承接上一篇<Android View触摸屏事件派发机制详解与源码分析>,阅读本篇之前建议先阅读. 1 背景 还记得前一篇<Android View触摸屏事件派发机制详解与源码分析>中关于透过源码继续进阶实例验证模块中存在的点击Button却触发了LinearLayout的事

Android View触摸屏事件派发机制详解与源码分析

PS一句:最终还是选择CSDN来整理发表这几年的知识点,该文章平行迁移到CSDN.因为CSDN也支持MarkDown语法了,牛逼啊! [工匠若水 http://blog.csdn.net/yanbober] 1.背景 最近在简书和微博还有Q群看见很多人说Android自定义控件(View/ViewGroup)如何学习?为啥那么难?其实答案很简单:"基础不牢,地动山摇." 不扯蛋了,进入正题.就算你不自定义控件,你也必须要了解Android控件的触摸屏事件传递机制(之所以说触摸屏是因为该

Android应用AsyncTask处理机制详解及源码分析

[工匠若水 http://blog.csdn.net/yanbober 转载烦请注明出处,尊重分享成果] 1 背景 Android异步处理机制一直都是Android的一个核心,也是应用工程师面试的一个知识点.前面我们分析了Handler异步机制原理(不了解的可以阅读我的<Android异步消息处理机制详解及源码分析>文章),这里继续分析Android的另一个异步机制AsyncTask的原理. 当使用线程和Handler组合实现异步处理时,当每次执行耗时操作都创建一条新线程进行处理,性能开销会比

SpringMVC视图机制详解[附带源码分析]

目录 前言 重要接口和类介绍 源码分析 编码自定义的ViewResolver 总结 参考资料 前言 SpringMVC是目前主流的Web MVC框架之一. 如果有同学对它不熟悉,那么请参考它的入门blog:http://www.cnblogs.com/fangjian0423/p/springMVC-introduction.html 本文将分析SpringMVC的视图这部分内容,让读者了解SpringMVC视图的设计原理. 重要接口和类介绍 1. View接口 视图基础接口,它的各种实现类是无

Android异步消息处理机制详解及源码分析

PS一句:最终还是选择CSDN来整理发表这几年的知识点,该文章平行迁移到CSDN.因为CSDN也支持MarkDown语法了,牛逼啊! [工匠若水 http://blog.csdn.net/yanbober 转载烦请注明出处,尊重分享成果] 最近相对来说比较闲,加上养病,所以没事干就撸些自己之前的知识点为博客,方便自己也方便别人. 1 背景 之所以选择这个知识点来分析有以下几个原因: 逛GitHub时发现关注的isuss中有人不停的在讨论Android中的Looper , Handler , Me

Android Touch事件传递机制详解 上

尊重原创:http://blog.csdn.net/yuanzeyao/article/details/37961997 最近总是遇到关于Android Touch事件的问题,如:滑动冲突的问题,以前也花时间学习过Android Touch事件的传递机制,可以每次用起来的时候总是忘记了,索性自己总结一下写篇文章避免以后忘记了,其实网上关于Touch事件的传递的文章真的很多,但是很少有系统性的,都是写了一个简单的demo运行了一下,对于我们了解Android Touch事件基本上没有任何帮助. 今

Android Touch事件传递机制详解 下

尊重原创:http://blog.csdn.net/yuanzeyao/article/details/38025165 资源下载:http://download.csdn.net/detail/yuanzeyao2008/7660997 在前一篇文章中,我主要讲解了Android源码中的Touch事件的传递过程,现在我想使用一个demo以及一个实例来学习一下Andorid中的Touch事件处理过程. 在Android系统中,和Touch事件分发和处理紧密相关的三个函数如下:(1) public