生活随笔
收集整理的這篇文章主要介紹了
Android的Touch系统简介(一)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
一、Android?touch事件的相關概念
用戶的Touch事件被包裝成MotionEvent
用戶當前的touch事件主要類型有:
?
ACTION_DOWN: 表示用戶開始觸摸.
?ACTION_MOVE: 表示用戶在移動(手指或者其他)
?ACTION_UP:表示用戶抬起了手指?
ACTION_CANCEL:表示手勢被取消了,一些關于這個事件類型的討論見:http://stackoverflow.com/questions/11960861/what-causes-a-motionevent-action-cancel-in-android?
ACTION_OUTSIDE: 表示用戶觸碰超出了正常的UI邊界.
ACTION_POINTER_DOWN:有一個非主要的手指按下了.
ACTION_POINTER_UP:一個非主要的手指抬起來了
touch事件的元數據包括:
?
touch的位置
手指的個數
touch事件的時間
一個touch手勢被定義為以ACTION_DOWN開始和以?ACTION_UP結束。
?
二、Touch事件的處理流程
當用戶觸摸屏幕時,觸發Activity調用dispatchTouchEvent
事件對象會按自頂向下的順序在View Tree中傳遞
?
? ? ?父View(ViewGroups)會調用dispatchTouchEvent將Event傳遞給子View ? ?
? ? Event在任何時候都可能被攔截
事件流會順著View鏈遞歸向下傳遞直到被消耗
?
若某個View想處理touch事件,必須先消耗ACTION_DOWN。考慮到效率,后續的事件將不會向下傳遞。
若某個事件未被消耗,最后會被Activity的onTouchEvent()消耗
若任何View或ViewGroup設置了OnTouchListener,touch事件將被攔截。
?
Activity.dispathcTouchEvent()的源碼分析:
?
[java]?view plaincopy
???public?boolean?dispatchTouchEvent(MotionEvent?ev)?{?????????if?(ev.getAction()?==?MotionEvent.ACTION_DOWN)?{?????????????onUserInteraction();?????????}?????????if?(getWindow().superDispatchTouchEvent(ev))?{?????????????return?true;?????????}?????????return?onTouchEvent(ev);?????}??
由代碼可以看出,對于應用層,該函數在touch事件發生后首先被調用。onUserInteraction()是一個空函數,可被用戶重載以進行相關處理。Event隨后將被傳遞到關聯到root view的window。若子view消耗了該Event,則返回true,否則Event最后被Activity的onTouchEvent()消耗。
?
ViewGroup.dispatchTouchEvent()的源碼分析如下:
?
[java]?view plaincopy
public?boolean?dispatchTouchEvent(MotionEvent?ev)?{??????????if?(mInputEventConsistencyVerifier?!=?null)?{??????????????mInputEventConsistencyVerifier.onTouchEvent(ev,?1);??????????}??????????boolean?handled?=?false;??????????if?(onFilterTouchEventForSecurity(ev))?{??????????????final?int?action?=?ev.getAction();??????????????final?int?actionMasked?=?action?&?MotionEvent.ACTION_MASK;??????????????????????????if?(actionMasked?==?MotionEvent.ACTION_DOWN)?{??????????????????????????????????????????????????cancelAndClearTouchTargets(ev);??????????????????resetTouchState();??????????????}??????????????????????????final?boolean?intercepted;??????????????if?(actionMasked?==?MotionEvent.ACTION_DOWN??????????????????????||?mFirstTouchTarget?!=?null)?{??????????????????final?boolean?disallowIntercept?=?(mGroupFlags?&?FLAG_DISALLOW_INTERCEPT)?!=?0;??????????????????if?(!disallowIntercept)?{??????????????????????????????????????????intercepted?=?onInterceptTouchEvent(ev);??????????????????????ev.setAction(action);?????????????????}?else?{??????????????????????intercepted?=?false;??????????????????}??????????????}?else?{??????????????????????????????????intercepted?=?true;??????????????}??????????????????????????final?boolean?canceled?=?resetCancelNextUpFlag(this)??????????????????????||?actionMasked?==?MotionEvent.ACTION_CANCEL;??????????????????????????final?boolean?split?=?(mGroupFlags?&?FLAG_SPLIT_MOTION_EVENTS)?!=?0;??????????????TouchTarget?newTouchTarget?=?null;??????????????boolean?alreadyDispatchedToNewTouchTarget?=?false;??????????????if?(!canceled?&&?!intercepted)?{??????????????????if?(actionMasked?==?MotionEvent.ACTION_DOWN??????????????????????????||?(split?&&?actionMasked?==?MotionEvent.ACTION_POINTER_DOWN)??????????????????????????||?actionMasked?==?MotionEvent.ACTION_HOVER_MOVE)?{??????????????????????final?int?actionIndex?=?ev.getActionIndex();?????????????????????final?int?idBitsToAssign?=?split???1?<<?ev.getPointerId(actionIndex)??????????????????????????????:?TouchTarget.ALL_POINTER_IDS;??????????????????????????????????????????????????????????????removePointersFromTouchTargets(idBitsToAssign);??????????????????????final?int?childrenCount?=?mChildrenCount;??????????????????????if?(newTouchTarget?==?null?&&?childrenCount?!=?0)?{??????????????????????????final?float?x?=?ev.getX(actionIndex);??????????????????????????final?float?y?=?ev.getY(actionIndex);??????????????????????????????????????????????????final?View[]?children?=?mChildren;??????????????????????????final?boolean?customOrder?=?isChildrenDrawingOrderEnabled();??????????????????????????????????????????????????for?(int?i?=?childrenCount?-?1;?i?>=?0;?i--)?{??????????????????????????????final?int?childIndex?=?customOrder????????????????????????????????????????getChildDrawingOrder(childrenCount,?i)?:?i;??????????????????????????????final?View?child?=?children[childIndex];??????????????????????????????if?(!canViewReceivePointerEvents(child)??????????????????????????????????????||?!isTransformedTouchPointInView(x,?y,?child,?null))?{??????????????????????????????????continue;??????????????????????????????}??????????????????????????????newTouchTarget?=?getTouchTarget(child);??????????????????????????????if?(newTouchTarget?!=?null)?{??????????????????????????????????????????????????????????????????newTouchTarget.pointerIdBits?|=?idBitsToAssign;??????????????????????????????????break;??????????????????????????????}??????????????????????????????resetCancelNextUpFlag(child);??????????????????????????????????????????????????????????if?(dispatchTransformedTouchEvent(ev,?false,?child,?idBitsToAssign))?{??????????????????????????????????????????????????????????????????mLastTouchDownTime?=?ev.getDownTime();??????????????????????????????????mLastTouchDownIndex?=?childIndex;??????????????????????????????????mLastTouchDownX?=?ev.getX();??????????????????????????????????mLastTouchDownY?=?ev.getY();??????????????????????????????????newTouchTarget?=?addTouchTarget(child,?idBitsToAssign);??????????????????????????????????alreadyDispatchedToNewTouchTarget?=?true;??????????????????????????????????break;??????????????????????????????}??????????????????????????}??????????????????????}??????????????????????if?(newTouchTarget?==?null?&&?mFirstTouchTarget?!=?null)?{??????????????????????????????????????????????????newTouchTarget?=?mFirstTouchTarget;??????????????????????????while?(newTouchTarget.next?!=?null)?{??????????????????????????????newTouchTarget?=?newTouchTarget.next;??????????????????????????}??????????????????????????newTouchTarget.pointerIdBits?|=?idBitsToAssign;??????????????????????}??????????????????}??????????????}??????????????????????????if?(mFirstTouchTarget?==?null)?{??????????????????????????????????handled?=?dispatchTransformedTouchEvent(ev,?canceled,?null,??????????????????????????TouchTarget.ALL_POINTER_IDS);??????????????}?else?{??????????????????????????????????????????????????TouchTarget?predecessor?=?null;??????????????????TouchTarget?target?=?mFirstTouchTarget;??????????????????while?(target?!=?null)?{??????????????????????final?TouchTarget?next?=?target.next;??????????????????????????????????????????if?(alreadyDispatchedToNewTouchTarget?&&?target?==?newTouchTarget)?{??????????????????????????handled?=?true;??????????????????????}?else?{??????????????????????????final?boolean?cancelChild?=?resetCancelNextUpFlag(target.child)??????????????????????????????????||?intercepted;??????????????????????????????????????????????????if?(dispatchTransformedTouchEvent(ev,?cancelChild,??????????????????????????????????target.child,?target.pointerIdBits))?{??????????????????????????????handled?=?true;??????????????????????????}??????????????????????????if?(cancelChild)?{??????????????????????????????if?(predecessor?==?null)?{??????????????????????????????????mFirstTouchTarget?=?next;??????????????????????????????}?else?{??????????????????????????????????predecessor.next?=?next;??????????????????????????????}??????????????????????????????target.recycle();??????????????????????????????target?=?next;??????????????????????????????continue;??????????????????????????}??????????????????????}??????????????????????predecessor?=?target;??????????????????????target?=?next;??????????????????}??????????????}??????????????????????????if?(canceled??????????????????????||?actionMasked?==?MotionEvent.ACTION_UP??????????????????????||?actionMasked?==?MotionEvent.ACTION_HOVER_MOVE)?{??????????????????resetTouchState();??????????????}?else?if?(split?&&?actionMasked?==?MotionEvent.ACTION_POINTER_UP)?{??????????????????final?int?actionIndex?=?ev.getActionIndex();??????????????????final?int?idBitsToRemove?=?1?<<?ev.getPointerId(actionIndex);??????????????????removePointersFromTouchTargets(idBitsToRemove);??????????????}??????????}??????????if?(!handled?&&?mInputEventConsistencyVerifier?!=?null)?{??????????????mInputEventConsistencyVerifier.onUnhandledEvent(ev,?1);??????????}??????????return?handled;??????}??
ViewGroup中將TouchEvent傳遞給子View的函數為dispatchTransformedTouchEvent(),源代碼如下:
?
?
[java]?view plaincopy
???private?boolean?dispatchTransformedTouchEvent(MotionEvent?event,?boolean?cancel,?????????????View?child,?int?desiredPointerIdBits)?{?????????final?boolean?handled;??????????????????????????????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;?????????}????????????????final?int?oldPointerIdBits?=?event.getPointerIdBits();?????????final?int?newPointerIdBits?=?oldPointerIdBits?&?desiredPointerIdBits;??????????????????if?(newPointerIdBits?==?0)?{?????????????return?false;?????????}?????????????????????????????????????????????????????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);?????????}????????????????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);?????????}????????????????transformedEvent.recycle();?????????return?handled;?????}?? View對象的dispatchTouchEvent代碼如下:
?
?
[java]?view plaincopy
??public?boolean?dispatchTouchEvent(MotionEvent?event)?{????????if?(mInputEventConsistencyVerifier?!=?null)?{????????????mInputEventConsistencyVerifier.onTouchEvent(event,?0);????????}????????if?(onFilterTouchEventForSecurity(event))?{??????????????????????ListenerInfo?li?=?mListenerInfo;??????????????????????if?(li?!=?null?&&?li.mOnTouchListener?!=?null?&&?(mViewFlags?&?ENABLED_MASK)?==?ENABLED????????????????????&&?li.mOnTouchListener.onTouch(this,?event))?{????????????????return?true;????????????}?????????????????????if?(onTouchEvent(event))?{????????????????return?true;????????????}????????}????????if?(mInputEventConsistencyVerifier?!=?null)?{????????????mInputEventConsistencyVerifier.onUnhandledEvent(event,?0);????????}????????return?false;????}?? ?
?
小結:
onInterceptTouchEvent:
onInterceptTouchEvent是在ViewGroup里面定義的,被ViewGroup.dispatchTouchEvent()調用,用于攔截所有的touch事件。默認返回false,表示不攔截touch事件,ViewGroup.dispatchTouchEvent()會調用子View的dispatchTouchEvent,將touch事件傳遞到子View中。若子View的dispatchTouchEvent?返回false,則ViewGroup的onTouchEvent會被調用;若子View的dispatchTouchEvent?返回true,表示消耗了手勢事件,ViewGroup的onTouchEvent則不會被調用。若ViewGroup.onInterceptTouchEvent()返回true,表示Touch事件被攔截,ViewGroup. dispatchTransformedTouchEvent()函數將被調用,該函數會調用super.dispatchTouchEvent(event),即View的dispatchEvent(),該函數首先會調用View.OnTouchListener.onTouch().若listener未消耗Touch事件,則會調用View.onTouchEvent(). ?
?
onTouchEvent:
view中定義的方法onTouchEvent默認返回true,表示消耗了一個touch事件,ViewGroup中定義的onTouchEvent默認返回false,表示不處理Touch手勢事件。手勢事件類型包括ACTION_DOWN,ACTION_MOVE,ACTION_UP,ACTION_CANCEL等事件。
?
本節及后續都是參考了一篇國外講義,下載地址:http://download.csdn.net/detail/bigconvience/7376431
?
轉載于:https://www.cnblogs.com/Free-Thinker/p/5501000.html
總結
以上是生活随笔為你收集整理的Android的Touch系统简介(一)的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。