Compartilhar via


AccessibilityNodeInfo.ActionPreviousAtMovementGranularity Campo

Definição

Cuidado

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

Ação que solicita ir para a entidade anterior no texto deste nó em uma determinada granularidade de movimento.

[Android.Runtime.Register("ACTION_PREVIOUS_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 ActionPreviousAtMovementGranularity = 512;
[<Android.Runtime.Register("ACTION_PREVIOUS_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 ActionPreviousAtMovementGranularity : Android.Views.Accessibility.Action

Valor do campo

Value = 512

Implementações

Atributos

Comentários

Ação que solicita ir para a entidade anterior no texto deste nó em uma determinada granularidade de movimento. Por exemplo, mover para o próximo caractere, palavra, etc.

<strong>Argumentos:</strong<>#ACTION_ARGUMENT_MOVEMENT_GRANULARITY_INT,<#ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN br><strong>Exemplo:</strong> Mover para o próximo caractere e não estender a seleção. <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_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments); </pré>

</p>

Documentação Java para android.view.accessibility.AccessibilityNodeInfo.ACTION_PREVIOUS_AT_MOVEMENT_GRANULARITY.

Partes desta página são modificações baseadas no trabalho criado e compartilhado pelo Android Open Source Project e usado de acordo com os termos descritos na Creative Commons 2.5 Attribution License.

Aplica-se a

Confira também