Window.SuperDispatchTouchEvent(MotionEvent) Method

Definition

Used by custom windows, such as Dialog, to pass the touch screen event further down the view hierarchy.

[Android.Runtime.Register("superDispatchTouchEvent", "(Landroid/view/MotionEvent;)Z", "GetSuperDispatchTouchEvent_Landroid_view_MotionEvent_Handler")]
public abstract bool SuperDispatchTouchEvent(Android.Views.MotionEvent? e);
[<Android.Runtime.Register("superDispatchTouchEvent", "(Landroid/view/MotionEvent;)Z", "GetSuperDispatchTouchEvent_Landroid_view_MotionEvent_Handler")>]
abstract member SuperDispatchTouchEvent : Android.Views.MotionEvent -> bool

Parameters

e
MotionEvent

The Android.Views.MotionEvent value used for e.

Returns

The result of the super dispatch touch event operation.

Attributes

Remarks

Used by custom windows, such as Dialog, to pass the touch screen event further down the view hierarchy. Application developers should not need to implement or call this.

Java documentation for android.view.Window.superDispatchTouchEvent(android.view.MotionEvent).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to