AccessibilityInfo
Sometimes it's useful to know whether or not the device has a screen reader that is currently active. The AccessibilityInfo
API is designed for this purpose. You can use it to query the current state of the screen reader as well as to register to be notified when the state of the screen reader changes.
Here's a small example illustrating how to use AccessibilityInfo
:
Reference
Methods
isBoldTextEnabled()
iOS-Only. Query whether a bold text is currently enabled. Returns a promise which resolves to a boolean. The result is true
when bold text is enabled and false
otherwise.
isGrayscaleEnabled()
iOS-Only. Query whether grayscale is currently enabled. Returns a promise which resolves to a boolean. The result is true
when grayscale is enabled and false
otherwise.
isInvertColorsEnabled()
iOS-Only. Query whether invert colors is currently enabled. Returns a promise which resolves to a boolean. The result is true
when invert colors is enabled and false
otherwise.
isReduceMotionEnabled()
Query whether reduce motion is currently enabled. Returns a promise which resolves to a boolean. The result is true
when reduce motion is enabled and false
otherwise.
isReduceTransparencyEnabled()
iOS-Only. Query whether reduce transparency is currently enabled. Returns a promise which resolves to a boolean. The result is true
when a reduce transparency is enabled and false
otherwise.
isScreenReaderEnabled()
Query whether a screen reader is currently enabled. Returns a promise which resolves to a boolean. The result is true
when a screen reader is enabled and false
otherwise.
addEventListener()
Add an event handler. Supported events:
boldTextChanged
: iOS-only event. Fires when the state of the bold text toggle changes. The argument to the event handler is a boolean. The boolean istrue
when bold text is enabled andfalse
otherwise.grayscaleChanged
: iOS-only event. Fires when the state of the gray scale toggle changes. The argument to the event handler is a boolean. The boolean istrue
when a gray scale is enabled andfalse
otherwise.invertColorsChanged
: iOS-only event. Fires when the state of the invert colors toggle changes. The argument to the event handler is a boolean. The boolean istrue
when invert colors is enabled andfalse
otherwise.reduceMotionChanged
: Fires when the state of the reduce motion toggle changes. The argument to the event handler is a boolean. The boolean istrue
when a reduce motion is enabled (or when "Transition Animation Scale" in "Developer options" is "Animation off") andfalse
otherwise.screenReaderChanged
: Fires when the state of the screen reader changes. The argument to the event handler is a boolean. The boolean istrue
when a screen reader is enabled andfalse
otherwise.reduceTransparencyChanged
: iOS-only event. Fires when the state of the reduce transparency toggle changes. The argument to the event handler is a boolean. The boolean istrue
when reduce transparency is enabled andfalse
otherwise.announcementFinished
: iOS-only event. Fires when the screen reader has finished making an announcement. The argument to the event handler is a dictionary with these keys:announcement
: The string announced by the screen reader.success
: A boolean indicating whether the announcement was successfully made.
setAccessibilityFocus()
Set accessibility focus to a React component. On Android, this is equivalent to UIManager.sendAccessibilityEvent(reactTag, UIManager.AccessibilityEventTypes.typeViewFocused);
.
announceForAccessibility()
Post a string to be announced by the screen reader.
removeEventListener()
Remove an event handler.