今天使用到用INTENT调用短消息,在网上搜索了都不正确。看了文档,总结示例代码如下:
String uri= "smsto:";
Intent it = new Intent(Intent.ACTION_SENDTO, Uri.parse(uri));
it.putExtra("sms_body", desc);
it.putExtra("compose_mode", true);
mActivity.startActivity(it);