View.IOnGenericMotionListener.OnGenericMotion(View, MotionEvent) Method

Definition

Called when a generic motion event is dispatched to a view.

[Android.Runtime.Register("onGenericMotion", "(Landroid/view/View;Landroid/view/MotionEvent;)Z", "GetOnGenericMotion_Landroid_view_View_Landroid_view_MotionEvent_Handler:Android.Views.View/IOnGenericMotionListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public bool OnGenericMotion (Android.Views.View? v, Android.Views.MotionEvent? e);
[<Android.Runtime.Register("onGenericMotion", "(Landroid/view/View;Landroid/view/MotionEvent;)Z", "GetOnGenericMotion_Landroid_view_View_Landroid_view_MotionEvent_Handler:Android.Views.View/IOnGenericMotionListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member OnGenericMotion : Android.Views.View * Android.Views.MotionEvent -> bool

Parameters

v
View

The view the generic motion event has been dispatched to.

e
MotionEvent

The MotionEvent object containing full information about the event.

Returns

True if the listener has consumed the event, false otherwise.

Attributes

Remarks

Called when a generic motion event is dispatched to a view. This allows listeners to get a chance to respond before the target view.

Java documentation for android.view.View.OnGenericMotionListener.onGenericMotion(android.view.View, 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