如何在 Android TextView 中将文本换行到下一行?
我正在使用以下 TextView
在其中显示一些数据:
<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 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您必须在 xml 中设置
android:scrollHorizontally="false"
。you must set
android:scrollHorizontally="false"
in your xml.在某些情况下,它可以通过在文本视图上将宽度设置为 0dp 来工作。
这是原始答案的链接。
In Some case It works by setting width to 0dp on text views.
here is a link to original answer.
您也可以尝试
在 XML 中。这对我有用。
You could also try
in your XML. This worked for me.
你需要设置
You need to set