如何将TextView中的文本设置为两行?
有没有办法以编程方式将 TextView
中的文本设置为两行?
Is there any way to programmatically set text in TextView
to be in two lines ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
输入
\n
作为新行将如下所示
另外,请确保 TextViews
setsingleline()
未设置为 trueType
\n
for a new linewill look like
Also, be sure that the TextViews
setsingleline()
isn't set to true您可以使用
\n
在文本视图中插入换行符。像这样:
You can use
\n
to insert a line break in your textview.Like this:
确保您的 TextView 在 xml 中有几行代码:
android:lines="2"
android:singleLine="false"
默认情况下
android:singleLine
为 true。因此,您可以在 XML 或 Java 代码中设置它,即:希望这会有所帮助。
Make sure your TextView has couple of lines of code in xml:
android:lines="2"
android:singleLine="false"
by default
android:singleLine
is true. So you can set it in XML or in Java code i.e. :Hope this will help.