android Intent 短信群发

from:http://stackoverflow.com/questions/11176270/how-to-send-a-sms-to-many-recipients

String phoneNumbers = "10086;12306;12315;";
Uri uri = Uri.parse("smsto:" + phoneNumbers);
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
intent.putExtra("sms_body", "The SMS text");
v.getContext().startActivity(intent);

号码之间以“;”隔离即可将群发号码传送到 SMS 界面

你可能感兴趣的:(android,intent,group,send,短信群发)