Class UIAccessibilityNavigationStyle


  • public final class UIAccessibilityNavigationStyle
    extends java.lang.Object
    The following values describe how the receiver's elements should be navigated by an assistive technology.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Automatic
      The assistive technology will automatically determine how the receiver's elements should be navigated.
      static long Combined
      The receiver’s elements should be combined and navigated as a single item.
      static long Separate
      The receiver's elements should be navigated as separate elements.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • Automatic

        public static final long Automatic
        The assistive technology will automatically determine how the receiver's elements should be navigated. This is the default value.
        See Also:
        Constant Field Values
      • Separate

        public static final long Separate
        The receiver's elements should be navigated as separate elements.
        See Also:
        Constant Field Values
      • Combined

        public static final long Combined
        The receiver’s elements should be combined and navigated as a single item. When the combined item has been selected, the assistive technology will navigate each element separately.
        See Also:
        Constant Field Values