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

断了今生、忘了曾经 提交于 2019-11-29 16:04:46

问题


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"


来源:https://stackoverflow.com/questions/4152726/how-to-wrap-text-to-next-line-in-an-android-textview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!