Skip to main content

Making the UI Accessible

caution

This section contains information about the old Java Spec API. For new development, the Kotlin API is recommended (see the Accessibility page in the 'Accessibility' section).

Why Accessibility is important​

The fundamental purpose of an interface is to provide people with access to information. Accessibility is the foundation of an interface. All people experience limitations in their abilities, whether it's temporary, situational or permanent. The aim of accessibility is to remove any obstacles that reduce the experience of using, understanding, and navigating the interface.

This page provides details of the Litho components, methods, nodes, events, and headings available to ensure the interface provides the 'full experience' promoted by Meta.

info

For information on how Meta is committed to creating a full UI experience for all people, see the Meta Accessibility site.

Content Description​

By default, all components support content description. This means all layout builders have a prop of type CharSequence named contentDescription .

Setting a content description on any component is achieved with the following:

Image.create(c)
.imageRes(R.drawable.some_image)
.contentDescription("This is an image")
.build();

The content description set here has the same semantics as when set on an Android view.

Custom accessibility​

Mount Specs can implement their own accessibility support by implementing an @OnPopulateAccessibilityNode method. This method accepts an AccessibilityNodeInfoCompat argument as well as any props that are specified on the spec method.

For example, accessibility for Text is specified using the following method:

@OnPopulateAccessibilityNode
static void onPopulateAccessibilityNode(
AccessibilityNodeInfoCompat accessibilityNode,
@Prop CharSequence text) {
accessibilityNode.setText(text);
}

This is only applicable for components that mount drawables since, if the component mounts a view, the support is built in.

Extra accessibility nodes​

On more complex mount specs that need to expose extra nodes to the accessibility framework, you'll have to implement three extra methods with the following annotations:

  • GetExtraAccessibilityNodesCount - returns number of extra accessibility nodes exposed by the component.
  • OnPopulateExtraAccessibilityNode - populates the extra accessibility node with the given bounds.

Accessibility handling​

All components support a set of events corresponding to AccessibilityDelegateCompat's methods. These events have attributes for each parameter of the corresponding AccessibilityDelegateCompat method and an additional parameter of type AccessibilityDelegateCompat called superDelegate, which enable a View's default implementation of accessibility methods to be called explicitly where necessary.

The following table provides an overview of the supported events:

EventAccessibilityDelegate method
DispatchPopulateAccessibilityEventEventdispatchPopulateAccessibilityEvent
OnInitializeAccessibilityEventEventonInitializeAccessibilityEvent
OnInitializeAccessibilityNodeInfoEventonInitializeAccessibilityNodeInfo
OnPopulateAccessibilityEventEventonPopulateAccessibilityEvent
OnRequestSendAccessibilityEventEventonRequestSendAccessibilityEvent
PerformAccessibilityActionEventperformAccessibilityAction
SendAccessibilityEventEventsendAccessibilityEvent
SendAccessibilityUncheckedEventsendAccessibilityEventUnchecked

Setting a handler for any of these events will result in an AccessibilityDelegate being set on the mounted View, which will call the event handler when the corresponding method is called.

Whenever a method with no supplied event handler is called, the delegate will defer to the Android View's default implementation (equivalent to calling super or superDelegate's implementation).

The following three steps provide an example of overriding onInitializeAccessibilityNodeInfo for a component:

  1. Implement an event handler:
@OnEvent(OnInitializeAccessibilityNodeInfoEvent.class)
static void onInitializeAccessibilityNodeInfoEvent(
ComponentContext c,
@FromEvent AccessibilityDelegateCompat superDelegate,
@FromEvent View host,
@FromEvent AccessibilityNodeInfoCompat info) {
// Equivalent to calling super on a regular AccessibilityDelegate, not required
superDelegate.onInitializeAccessibilityNodeInfo(view, info);
// My implementation
}
  1. Set the event handler on a component:
Text.create(c)
.text(title)
.onInitializeAccessiblityNodeInfoHandler(MyComponent.onInitializeAccessibilityNodeInfoEvent(c));

One of the best features of AccessibilityDelegates in general is their reusability even across different types of Views. This can also be achieved within Litho by creating a wrapper spec that takes in a component and adds the desired event handlers. For example, let's say we want to have a Component that appends "please" to every AccessibilityEvent that it announces.

@LayoutSpec
class PoliteComponentWrapper {

@OnCreateLayout
static Component onCreateLayout(
ComponentContext c,
@Prop Component content) {

return Wrapper.create(c)
.delegate(content)
.onPopulateAccessibilityEventHandler(
PoliteComponentWrapper.onPopulateAccessibilityEvent(c))
.build();
}

@OnEvent(OnPopulateAccessibilityEvent.class)
static void onPopulateAccessibilityEvent(
ComponentContext c,
@FromEvent AccessibilityDelegateCompat superDelegate,
@FromEvent View view
@FromEvent AccessibilityEvent event) {
superDelegate.onPopulateAccessibilityEvent(view, event);
event.getText().add("please");
}
}
  1. Replace any uses of a component with PoliteComponentWrapper:
@OnCreateLayout
static Component onCreateLayout(
ComponentContext c,
@Prop CharSequence text) {

return PoliteComponentWrapper.create(c)
.content(
Text.create(c)
.text(text))
.build();
}

Accessibility Heading​

Heading is an accessibility property that helps users to choose to 'Navigate by Headings' and ignore scrolling through each and every subitem under a heading. 'Navigate based on Heading' can be selected from "Local Context Menu" when talkback is on. Talkback gesture for "Local Context Menu" is Swipe up then right.

Making any component an Accessibility Header is as simple as the following:

Row.create(c)
.contentDescription("This is an accessibility heading")
.accessibilityHeading(true)
.build();