Share via


AccessibilityNodeInfo.ActionNextAtMovementGranularity Campo

Definición

Precaución

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

Acción que solicita ir a la siguiente entidad en el texto de este nodo en una granularidad de movimiento determinada.

[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

Valor de campo

Value = 256

Implementaciones

Atributos

Comentarios

Acción que solicita ir a la siguiente entidad en el texto de este nodo en una granularidad de movimiento determinada. Por ejemplo, vaya al siguiente carácter, palabra, 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>

Documentación de Java para android.view.accessibility.AccessibilityNodeInfo.ACTION_NEXT_AT_MOVEMENT_GRANULARITY.

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el proyecto de código y se usan según los términos descritos en la creative Commons 2.5.

Se aplica a

Consulte también