AccessibilityNodeInfo.ActionPreviousAtMovementGranularity Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 previous entity in this node's text at a given movement granularity.
[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
Field Value
Value = 512Implements
- Attributes
Remarks
Action that requests to go to the previous 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 next 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_PREVIOUS_AT_MOVEMENT_GRANULARITY, arguments);
</pre>
</p>
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.