Package com.batch.android.messaging.view
Interface DelegatedTouchEventViewGroup
-
- All Known Implementing Classes:
ImageFormatView.ImageContainerView,SeparatedFlexboxLayout
public interface DelegatedTouchEventViewGroupDescribes a ViewGroup that can delegate its touch event handling
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceDelegatedTouchEventViewGroup.Delegate
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetTouchEventDelegate(DelegatedTouchEventViewGroup.Delegate delegate)booleansuperOnInterceptTouchEvent(android.view.MotionEvent ev)Calls super's superOnInterceptTouchEvent and forwards the returned valuebooleansuperOnTouchEvent(android.view.MotionEvent ev)Calls super's onTouchEvent and forwards the returned value
-
-
-
Method Detail
-
superOnInterceptTouchEvent
boolean superOnInterceptTouchEvent(android.view.MotionEvent ev)
Calls super's superOnInterceptTouchEvent and forwards the returned value
-
superOnTouchEvent
boolean superOnTouchEvent(android.view.MotionEvent ev)
Calls super's onTouchEvent and forwards the returned value
-
setTouchEventDelegate
void setTouchEventDelegate(@Nullable DelegatedTouchEventViewGroup.Delegate delegate)
-
-