Skip to main content
Logo Appt Light

Text spacing on Android

Content should adapt to increased spacing between lines, words, letters, and paragraphs. This helps users with effectively reading text.

On Android, you can use the following attribute to increase text spacing:

<TextView
    android:text="Appt"
    android:letterSpacing="3sp"
    android:lineHeight="20sp"
    android:lineSpacingExtra="5sp"
    android:lineSpacingMultiplier="1.5"
    android:layout_marginBottom="20dp"/>

Feedback?

Let us know!