Home
> Tricks & Tips > Set line-break in TextView
Set line-break in TextView
A simple trick to set line-break (new-line character insertion) in TextView:
<TextView android:id="@+id/tvContent" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="false" />
Now just insert new-line character to have a line-break in your view.
textView.setText("First line \nSecond line \nThird line");
Have fun!
Cheers,
Pete Houston
Comments (0)
Leave a comment