Add Snippet |
Send an sms via intent
raw · copy · downloadUri 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);
Preview
Editors
Tags
Related Snippets
Send mms via intent
Phone a telephone number via intent
open browser to web page URL via intent
Install an APK via intent
Open Wifi Settings
Send a tweet using Twidgit intent
This
Uri smsUri = Uri.parse("sms:100861"); Intent intent = new Intent(Intent.ACTION_VIEW, smsUri); intent.putExtra("sms_body", "shenrenkui"); startActivity(intent);
works better.
digital accessories
Thanks a lot for this information ! I am developping an application for my cigarette electronique shop, that'll sure help.
3 Comments
This
works better.
digital accessories
Thanks a lot for this information ! I am developping an application for my cigarette electronique shop, that'll sure help.