Android.Views.Accessibility.AccessibilityNodeInfo.ActionPreviousHtmlElement Field
Action to move to the previous HTML element of a given type.

Value: 2048

Syntax

[Android.Runtime.Register("ACTION_PREVIOUS_HTML_ELEMENT")]
[System.Obsolete("This constant will be removed in the future version. Use Android.Views.Accessibility.Action enum directly instead of this field.")]
public const Action ActionPreviousHtmlElement

Remarks

Action to move to the previous HTML element of a given type. For example, move to the BUTTON, INPUT, TABLE, etc.

Arguments:AccessibilityNodeInfo.ActionArgumentHtmlElementString

Example:

java Example

   Bundle arguments = new Bundle();
   arguments.putString(AccessibilityNodeInfo.ACTION_ARGUMENT_HTML_ELEMENT_STRING, "BUTTON");
   info.performAction(AccessibilityNodeInfo.ACTION_PREVIOUS_HTML_ELEMENT, arguments);
 

[Android Documentation]

Requirements

Namespace: Android.Views.Accessibility
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 16