Android.App.Activity.OnUserInteraction Method
Called whenever a key, touch, or trackball event is dispatched to the activity.

Syntax

[Android.Runtime.Register("onUserInteraction", "()V", "GetOnUserInteractionHandler")]
public virtual void OnUserInteraction ()

See Also

Activity.OnUserLeaveHint

Remarks

Called whenever a key, touch, or trackball event is dispatched to the activity. Implement this method if you wish to know that the user has interacted with the device in some way while your activity is running. This callback and Activity.OnUserLeaveHint are intended to help activities manage status bar notifications intelligently; specifically, for helping activities determine the proper time to cancel a notfication.

All calls to your activity's Activity.OnUserLeaveHint callback will be accompanied by calls to Activity.OnUserInteraction. This ensures that your activity will be told of relevant user activity such as pulling down the notification pane and touching an item there.

Note that this callback will be invoked for the touch down action that begins a touch gesture, but may not be invoked for the touch-moved and touch-up actions that follow.

[Android Documentation]

Requirements

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