【发布时间】:2014-12-04 14:46:46
【问题描述】:
String x="Hello World";
String y="You Rock!!!";
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", x);
sendIntent.putExtra("sms_body", y);
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
我正在尝试通过 SMS 发送多个消息正文,但只有“You Rock!!!”被展示。我想要做的是能够显示多条消息并对其进行预格式化(在不同的行上)。
比如说……
Hello World
You Rock!!!
【问题讨论】:
标签: android android-intent sms android-implicit-intent