Skip to main content
Logo Appt Light

Success Criterion 1.3.2 - Level A

Meaningful Sequence

Ensure that the order which assistive technologies follow accurately reflects the meaning of the content. Elements that belong together must be presented together. Otherwise, users may misunderstand the content.

Impact

The content should be presented to assistive technologies in a meaningful way. This allows users of voice control, keyboard control, switch control and the screen reader to present the content a meaningful way.

Check

Is the order of elements clear for users of assistive technologies?”

You can use a screen reader of keyboard access to check the order of elements.

Solution

Set accessibility order

On Android, you can set the accessibility order in XML, or modify the accessibility order in code. You can use the android:accessibilityTraversalAfter and android:accessibilityTraversalBefore properties in XML. Or you can use the setAccessibilityTraversalBefore and setAccessibilityTraversalAfter methods in code.

header.setAccessibilityTraversalBefore(R.id.description)
list.setAccessibilityTraversalAfter(R.id.description)

Resources

Feedback?

Let us know!