Package 

Interface DelegatedTouchEventViewGroup.Delegate

    • Method Summary

      Modifier and Type Method Description
      abstract boolean onInterceptTouchEvent(MotionEvent ev, DelegatedTouchEventViewGroup source) Delegated onInterceptTouchEventWorks exactly like the original method, this completly takes over it so make sureyou implement it correctly
      abstract boolean onTouchEvent(MotionEvent event, DelegatedTouchEventViewGroup source, boolean wantsCancellationOnInterception) Delegated onTouchEventWorks exactly like the original method, this completly takes over it so make sureyou implement it correctlyViews can ask to receive a "fake" cancellation touch event when the delegate starts actingon touches (like responding to a pan action)This is useful if your view itself handles a touch event (like a tap) and not a subviewas this case is NOT handled by onInterceptTouchEvent
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • onTouchEvent

         abstract boolean onTouchEvent(MotionEvent event, DelegatedTouchEventViewGroup source, boolean wantsCancellationOnInterception)

        Delegated onTouchEvent

        Works exactly like the original method, this completly takes over it so make sureyou implement it correctly

        Views can ask to receive a "fake" cancellation touch event when the delegate starts actingon touches (like responding to a pan action)This is useful if your view itself handles a touch event (like a tap) and not a subviewas this case is NOT handled by onInterceptTouchEvent