Android 程式开发:(廿一)消息传递 —— 21.3 使用Intent发送短信

使用SmsManager类,可以在自己编写的程序内部发送短信,而不需要调用系统的短信应用。

然而,有的时候调用系统内置的短信应用会更加方便。

这时,需要使用一个MIME类型为vnd.android-dir/mms-sms的Intent对象。

		Intent i = new 
				Intent(android.content.Intent.ACTION_VIEW);
		i.putExtra("address", "5556; 5558; 5560");

		i.putExtra("sms_body", "Hello my friends!");
		i.setType("vnd.android-dir/mms-sms");
		startActivity(i);


原文地址:https://www.cnblogs.com/keanuyaoo/p/3299297.html