发短信

Uri smsToUri = Uri.parse("smsto:");
Intent sendIntent = new Intent(Intent.ACTION_VIEW, smsToUri);
sendIntent.putExtra("sms_body", smsContent);
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);

你可能感兴趣的:(sms)