AccessibilityNodeInfo.ActionPreviousAtMovementGranularity Campo
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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 = 512Implementaçõ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>
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.