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
Be the first to comment