AccessibilityNodeInfo.ActionNextAtMovementGranularity Field

Definition

Caution

This constant will be removed in the future version. Use Android.Views.Accessibility.Action enum directly instead of this field.

Action that requests to go to the next entity in this node's text at a given movement granularity.

[Android.Runtime.Register("ACTION_NEXT_AT_MOVEMENT_GRANULARITY")]
[System.Obsolete("This constant will be removed in the future version. Use Android.Views.Accessibility.Action enum directly instead of this field.", true)]
public const Android.Views.Accessibility.Action ActionNextAtMovementGranularity = 256;
[<Android.Runtime.Register("ACTION_NEXT_AT_MOVEMENT_GRANULARITY")>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Views.Accessibility.Action enum directly instead of this field.", true)>]
val mutable ActionNextAtMovementGranularity : Android.Views.Accessibility.Action

Field Value

Value = 256

Implements

Attributes

Remarks

Action that requests to go to the next entity in this node's text at a given movement granularity. For example, move to the next character, word, etc.

<strong>Arguments:</strong> #ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT<, #ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN<br> <strong>Example:</strong> Move to the previous character and do not extend selection. <pre><p> Bundle arguments = new Bundle(); arguments.putInt(AccessibilityNodeInfo.ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT, AccessibilityNodeInfo.MOVEMENT_GRANULARITY_CHARACTER); arguments.putBoolean(AccessibilityNodeInfo.ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN, false); info.performAction(AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY, arguments); </pre>

</p>

Java documentation for android.view.accessibility.AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also