How to wrap text to next line in an Android TextView? How to wrap text to next line in an Android TextView? android android

How to wrap text to next line in an Android TextView?


you must set android:scrollHorizontally="false" in your xml.


In Some case It works by setting width to 0dp on text views.

android:layout_width="0dp"

here is a link to original answer.


You could also try

android:inputType="textMultiLine"

in your XML. This worked for me.