Send sms via intent

3 votes · 3 comments

Send an sms via intent

raw ·
copy
· download
Uri smsUri = Uri.parse("tel:100861"); Intent intent = new Intent(Intent.ACTION_VIEW, smsUri); intent.putExtra("sms_body", "shenrenkui"); intent.setType("vnd.android-dir/mms-sms"); startActivity(intent);
Add a comment

3 Comments

This

Uri smsUri = Uri.parse("sms:100861");
Intent intent = new Intent(Intent.ACTION_VIEW, smsUri);
intent.putExtra("sms_body", "shenrenkui");
startActivity(intent);

works better.

Reply · May 9, 2012, 2:03 p.m.
Reply · May 12, 2012, 5:40 a.m.

Thanks a lot for this information ! I am developping an application for my cigarette electronique shop, that'll sure help.

Reply · May 6, 2013, 1:48 a.m.