-
public interface DelegatedTouchEventViewGroupDescribes a ViewGroup that can delegate its touch event handling
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceDelegatedTouchEventViewGroup.Delegate
-
Method Summary
Modifier and Type Method Description abstract booleansuperOnInterceptTouchEvent(MotionEvent ev)Calls super's superOnInterceptTouchEvent and forwards the returned value abstract booleansuperOnTouchEvent(MotionEvent ev)Calls super's onTouchEvent and forwards the returned value abstract voidsetTouchEventDelegate(@Nullable() DelegatedTouchEventViewGroup.Delegate delegate)-
-
Method Detail
-
superOnInterceptTouchEvent
abstract boolean superOnInterceptTouchEvent(MotionEvent ev)
Calls super's superOnInterceptTouchEvent and forwards the returned value
-
superOnTouchEvent
abstract boolean superOnTouchEvent(MotionEvent ev)
Calls super's onTouchEvent and forwards the returned value
-
setTouchEventDelegate
abstract void setTouchEventDelegate(@Nullable() DelegatedTouchEventViewGroup.Delegate delegate)
-
-
-
-