这似乎是一个愚蠢的问题,但我一直在寻找并找不到答案。
我正在创建一个 android 应用程序,其中有一个按钮可以在电子邮件中发送一些信息,我不想将所有内容都放在一个段落中。
这是我的应用程序为电子邮件正文的 putExtra 所做的事情:
I am the first part of the info being emailed. I am the second part. I am the third part.
这就是我想要它做的事情:
I am the first part of the info being emailed.
I am the second part.
I am the third part.
我如何将新行放入字符串或使用 putExtra 方法来完成?
谢谢你。