Skip to main content
Logo Appt Light

Success Criterion 1.4.10 - Level AA

Reflow

Ensure content can be read without having to scroll in two directions at the same time. This is confusing for users. It is allowed to provide horizontally and vertically scrollable content within a single screen.

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!