如何在为 Android 共享提供的消息中获取换行符
Android 共享意图采用字符串作为主体。
如何引入换行符? Gmail 默认情况下似乎采用纯文本,因此我无法在共享消息中看到任何换行符。
\n、
、
和 0x0A 都不起作用。
Android Sharing Intent takes a string for the body.
How do you introduce a line break? Gmail appears to do plain text by default, and so I can't get any line breaks in my sharing message.
\n,
, <br />, and 0x0A all don't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧 \n 确实有效。如果将共享意图 setType 更改为 text\html,则 < br/>.
我的问题是由 HTML 模板内部的问题引起的,然后通过 PhoneGap 共享插件发送。
Okay \n does indeed work. And if you change the sharing intent setType to text\html, then < br />.
My problem was caused by issues inside HTML templating and then sent through a phonegap sharing plugin.