Android 调用系统短信 - 群发

调用系统短信 - 群发

Uri uri = Uri.parse("smsto:1008611;10086");
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra("sms_body", "The SMS text");
startActivity(it);

经测试,小米1s,中兴,联想机型 过测试

你可能感兴趣的:(android,调用,群发,系统短信)