Skip to main content
Logo Appt Light

Success Criterion 1.4.10 - Level AA

Reflow

Ensure content can be reached without having to scroll in two directions at the same time. This can cause users to lose their orientation on the screen. Providing horizontally and vertically scrollable content on one screen is permitted, but the content may only scroll in one direction at a time.

Impact

  • Reflow allows visually impaired people to clearly follow where text begins and ends.

  • Scaled text might push elements off the screen. This results in a loss of information.

Check

Can all content be reached without scrolling in two directions?

This can be tested visually, enable the largest font size.

Solution

Support reflow

On Android, all elements should be placed in a scrollable layout, such as a ScrollView or RecyclerView. Never use fixed values for any heights or widths.

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Content should scroll!" />
</ScrollView>

Resources

Feedback?

Let us know!