- e
- The generic motion event being processed.
Documentation for this section has not yet been entered.
Called when a generic motion event was not handled by any of the views inside of the activity.
Generic motion events describe joystick movements, mouse hovers, track pad touches, scroll wheel movements and other input events. The Android.Views.MotionEvent.Source of the motion event specifies the class of input that was received. Implementations of this method must examine the bits in the source before processing the event. The following code example shows how this is done.
Generic motion events with source class Android.Views.InputDevice.SourceClassPointer are delivered to the view under the pointer. All other generic motion events are delivered to the focused view.
See Android.Views.View.OnGenericMotionEvent(Android.Views.MotionEvent) for an example of how to handle this event.