Loading core/java/android/view/View.java +9 −9 Original line number Original line Diff line number Diff line Loading @@ -1503,7 +1503,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, private SparseArray<Object> mKeyedTags; private SparseArray<Object> mKeyedTags; /** /** * The next available accessiiblity id. * The next available accessibility id. */ */ private static int sNextAccessibilityViewId; private static int sNextAccessibilityViewId; Loading Loading @@ -2053,7 +2053,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, public static final int IMPORTANT_FOR_ACCESSIBILITY_NO = 0x00000002; public static final int IMPORTANT_FOR_ACCESSIBILITY_NO = 0x00000002; /** /** * The default whether the view is important for accessiblity. * The default whether the view is important for accessibility. */ */ static final int IMPORTANT_FOR_ACCESSIBILITY_DEFAULT = IMPORTANT_FOR_ACCESSIBILITY_AUTO; static final int IMPORTANT_FOR_ACCESSIBILITY_DEFAULT = IMPORTANT_FOR_ACCESSIBILITY_AUTO; Loading Loading @@ -3125,7 +3125,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, private boolean mSendingHoverAccessibilityEvents; private boolean mSendingHoverAccessibilityEvents; /** /** * Delegate for injecting accessiblity functionality. * Delegate for injecting accessibility functionality. */ */ AccessibilityDelegate mAccessibilityDelegate; AccessibilityDelegate mAccessibilityDelegate; Loading Loading @@ -4475,7 +4475,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } /** /** * Sends an accessibility event of the given type. If accessiiblity is * Sends an accessibility event of the given type. If accessibility is * not enabled this method has no effect. The default implementation calls * not enabled this method has no effect. The default implementation calls * {@link #onInitializeAccessibilityEvent(AccessibilityEvent)} first * {@link #onInitializeAccessibilityEvent(AccessibilityEvent)} first * to populate information about the event source (this View), then calls * to populate information about the event source (this View), then calls Loading Loading @@ -4894,7 +4894,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, info.setLongClickable(isLongClickable()); info.setLongClickable(isLongClickable()); // TODO: These make sense only if we are in an AdapterView but all // TODO: These make sense only if we are in an AdapterView but all // views can be selected. Maybe from accessiiblity perspective // views can be selected. Maybe from accessibility perspective // we should report as selectable view in an AdapterView. // we should report as selectable view in an AdapterView. info.addAction(AccessibilityNodeInfo.ACTION_SELECT); info.addAction(AccessibilityNodeInfo.ACTION_SELECT); info.addAction(AccessibilityNodeInfo.ACTION_CLEAR_SELECTION); info.addAction(AccessibilityNodeInfo.ACTION_CLEAR_SELECTION); Loading Loading @@ -5004,7 +5004,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } /** /** * Sets a delegate for implementing accessibility support via compositon as * Sets a delegate for implementing accessibility support via composition as * opposed to inheritance. The delegate's primary use is for implementing * opposed to inheritance. The delegate's primary use is for implementing * backwards compatible widgets. For more details see {@link AccessibilityDelegate}. * backwards compatible widgets. For more details see {@link AccessibilityDelegate}. * * Loading Loading @@ -6680,7 +6680,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** /** * Returns whether the View is considered actionable from * Returns whether the View is considered actionable from * accessibility perspective. Such view are important for * accessibility perspective. Such view are important for * accessiiblity. * accessibility. * * * @return True if the view is actionable for accessibility. * @return True if the view is actionable for accessibility. * * Loading @@ -6692,7 +6692,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** /** * Returns whether the View has registered callbacks wich makes it * Returns whether the View has registered callbacks wich makes it * important for accessiiblity. * important for accessibility. * * * @return True if the view is actionable for accessibility. * @return True if the view is actionable for accessibility. */ */ Loading Loading @@ -6731,7 +6731,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** /** * Reset the state indicating the this view has requested clients * Reset the state indicating the this view has requested clients * interested in its accessiblity state to be notified. * interested in its accessibility state to be notified. * * * @hide * @hide */ */ Loading Loading
core/java/android/view/View.java +9 −9 Original line number Original line Diff line number Diff line Loading @@ -1503,7 +1503,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, private SparseArray<Object> mKeyedTags; private SparseArray<Object> mKeyedTags; /** /** * The next available accessiiblity id. * The next available accessibility id. */ */ private static int sNextAccessibilityViewId; private static int sNextAccessibilityViewId; Loading Loading @@ -2053,7 +2053,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, public static final int IMPORTANT_FOR_ACCESSIBILITY_NO = 0x00000002; public static final int IMPORTANT_FOR_ACCESSIBILITY_NO = 0x00000002; /** /** * The default whether the view is important for accessiblity. * The default whether the view is important for accessibility. */ */ static final int IMPORTANT_FOR_ACCESSIBILITY_DEFAULT = IMPORTANT_FOR_ACCESSIBILITY_AUTO; static final int IMPORTANT_FOR_ACCESSIBILITY_DEFAULT = IMPORTANT_FOR_ACCESSIBILITY_AUTO; Loading Loading @@ -3125,7 +3125,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, private boolean mSendingHoverAccessibilityEvents; private boolean mSendingHoverAccessibilityEvents; /** /** * Delegate for injecting accessiblity functionality. * Delegate for injecting accessibility functionality. */ */ AccessibilityDelegate mAccessibilityDelegate; AccessibilityDelegate mAccessibilityDelegate; Loading Loading @@ -4475,7 +4475,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } /** /** * Sends an accessibility event of the given type. If accessiiblity is * Sends an accessibility event of the given type. If accessibility is * not enabled this method has no effect. The default implementation calls * not enabled this method has no effect. The default implementation calls * {@link #onInitializeAccessibilityEvent(AccessibilityEvent)} first * {@link #onInitializeAccessibilityEvent(AccessibilityEvent)} first * to populate information about the event source (this View), then calls * to populate information about the event source (this View), then calls Loading Loading @@ -4894,7 +4894,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, info.setLongClickable(isLongClickable()); info.setLongClickable(isLongClickable()); // TODO: These make sense only if we are in an AdapterView but all // TODO: These make sense only if we are in an AdapterView but all // views can be selected. Maybe from accessiiblity perspective // views can be selected. Maybe from accessibility perspective // we should report as selectable view in an AdapterView. // we should report as selectable view in an AdapterView. info.addAction(AccessibilityNodeInfo.ACTION_SELECT); info.addAction(AccessibilityNodeInfo.ACTION_SELECT); info.addAction(AccessibilityNodeInfo.ACTION_CLEAR_SELECTION); info.addAction(AccessibilityNodeInfo.ACTION_CLEAR_SELECTION); Loading Loading @@ -5004,7 +5004,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, } } /** /** * Sets a delegate for implementing accessibility support via compositon as * Sets a delegate for implementing accessibility support via composition as * opposed to inheritance. The delegate's primary use is for implementing * opposed to inheritance. The delegate's primary use is for implementing * backwards compatible widgets. For more details see {@link AccessibilityDelegate}. * backwards compatible widgets. For more details see {@link AccessibilityDelegate}. * * Loading Loading @@ -6680,7 +6680,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** /** * Returns whether the View is considered actionable from * Returns whether the View is considered actionable from * accessibility perspective. Such view are important for * accessibility perspective. Such view are important for * accessiiblity. * accessibility. * * * @return True if the view is actionable for accessibility. * @return True if the view is actionable for accessibility. * * Loading @@ -6692,7 +6692,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** /** * Returns whether the View has registered callbacks wich makes it * Returns whether the View has registered callbacks wich makes it * important for accessiiblity. * important for accessibility. * * * @return True if the view is actionable for accessibility. * @return True if the view is actionable for accessibility. */ */ Loading Loading @@ -6731,7 +6731,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** /** * Reset the state indicating the this view has requested clients * Reset the state indicating the this view has requested clients * interested in its accessiblity state to be notified. * interested in its accessibility state to be notified. * * * @hide * @hide */ */ Loading