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

Value: 1024

Syntax

[Android.Runtime.Register("ACTION_NEXT_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 ActionNextHtmlElement

Remarks

Action to move to the next 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_NEXT_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