How to wrap text to next line in an Android TextVi

2019-02-11 12:42发布

问题:

I am using following TextView to display some data in it:

<TextView android:id="@+id/notificationText" 
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:textSize="18sp"
        android:inputType="textMultiLine"
        android:maxLines="2"
        android:layout_paddingRight="20dip"
        android:textColor="#ffffff"/>

I want to wrap text to next line. How can I do this?

回答1:

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



回答2:

You could also try

android:inputType="textMultiLine"

in your XML. This worked for me.



回答3:

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

android:layout_width="0dp"

here is a link to original answer.



回答4:

You need to set

 android:minLines="2"