Lines Matching full:accessibility
81 <li><a href="#A11yService">Accessibility Services</a>
85 <li><a href="#A11yFeatures">Declare accessibility features</a></li>
892 <p>If your app currently uses the accessibility service APIs to access system notifications, you should update your app to use these APIs instead.</p>
967 <h2 id="A11yService">Accessibility Services</h2>
973 onKeyEvent()} callback method. This allows your accessibility service to handle input for
980 <p>The {@link android.view.accessibility.AccessibilityNodeInfo} now provides APIs that allow
984 <p>To specify the selection of text to cut or copy, your accessibility service can use the new
985 action, {@link android.view.accessibility.AccessibilityNodeInfo#ACTION_SET_SELECTION}, passing
987 android.view.accessibility.AccessibilityNodeInfo#ACTION_ARGUMENT_SELECTION_START_INT} and {@link
988 android.view.accessibility.AccessibilityNodeInfo#ACTION_ARGUMENT_SELECTION_END_INT}.
990 action, {@link android.view.accessibility.AccessibilityNodeInfo#ACTION_NEXT_AT_MOVEMENT_GRANULARITY}
992 android.view.accessibility.AccessibilityNodeInfo#ACTION_ARGUMENT_EXTEND_SELECTION_BOOLEAN}.</p>
994 <p>You can then cut or copy with {@link android.view.accessibility.AccessibilityNodeInfo#ACTION_CUT},
995 {@link android.view.accessibility.AccessibilityNodeInfo#ACTION_COPY}, then later paste with
996 {@link android.view.accessibility.AccessibilityNodeInfo#ACTION_PASTE}.</p>
1001 Library</a>, with the {@link android.support.v4.view.accessibility.AccessibilityNodeInfoCompat}
1006 <h3 id="A11yFeatures">Declare accessibility features</h3>
1008 <p>Beginning with Android 4.3, an accessibility service must declare accessibility capabilities
1009 in its metadata file in order to use certain accessibility features. If the capability is not
1011 accessibility capabilities, you must use XML attributes that correspond to the various
1048 each time an event occurs, receiving an {@link android.view.accessibility.AccessibilityEvent} object