Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序具有发送电子邮件功能,在这封电子邮件中,我希望它说如下内容:
你好, 这是一封电子邮件。
你好,
这是一封电子邮件。
我的问题是如何以编程方式在Hello,and之间输入新行This is an email?
Hello,
This is an email
采用 :
“你好,\r\n这是一封电子邮件。”
像这样:
txtV.setText(Html.fromHtml("Hello<br>This is an Email"));