标签: android sms send
我想使用这个命令:
SmsManager.getDefault().sendTextMessage("123456789", null, "Hello World", null, null);
我想知道我是否可以通过换行发送短信。让自己清楚。我想知道我是否可以这样做:
SmsManager.getDefault().sendTextMessage("123456789", null, "Hello \nWorld", null, null);
或者,这是另一种方式吗?
答案 0 :(得分:0)
为什么不使用StringBuilder创建所有内容,然后将其添加到您的意图中?
how to add new line to email contents?