将文本设置为 TextView
我想通过代码为 textView 设置文本。我的文本是这样的:“aaaa \n bbb\n ccc”,如果我在屏幕上使用 setText() 方法,我会得到精确的这种格式,而不是这样:
"aaaa
bbb
ccc".
如果我放入 xml android:text="aaaa \ n bbb\n ccc" 工作正常。我需要通过代码设置它,而不是从 xml 文件。我该怎么做?
I want to set text for a textView by code. My text is something like this :" aaaa \n bbb\n ccc" and if I use setText() method on screen I got exact in this format, and not like this :
"aaaa
bbb
ccc".
If I put in xml android:text="aaaa \n bbb\n ccc" it works fine. I need to set this by code,and not from xml file. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需使用换行符“\n”,如下所示:
这将输出:
Simply use the newline character "\n", like this:
That will output:
使用 HTML 标签:
Use HTML tags:
尝试这样:
Try like this: