Android.App.Activity.OnTrackballEvent Method
Called when the trackball was moved and not handled by any of the views inside of the activity.

Syntax

[Android.Runtime.Register("onTrackballEvent", "(Landroid/view/MotionEvent;)Z", "GetOnTrackballEvent_Landroid_view_MotionEvent_Handler")]
public virtual bool OnTrackballEvent (Android.Views.MotionEvent e)

Parameters

e
The trackball event being processed.

Returns

Documentation for this section has not yet been entered.

Remarks

Called when the trackball was moved and not handled by any of the views inside of the activity. So, for example, if the trackball moves while focus is on a button, you will receive a call here because buttons do not normally do anything with trackball events. The call here happens before trackball movements are converted to DPAD key events, which then get sent back to the view hierarchy, and will be processed at the point for things like focus navigation.

[Android Documentation]

Requirements

Namespace: Android.App
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1