Skip to content

Instantly share code, notes, and snippets.

@mstefanko
Created March 28, 2011 13:34
Show Gist options
  • Save mstefanko/890465 to your computer and use it in GitHub Desktop.
Save mstefanko/890465 to your computer and use it in GitHub Desktop.
Android sending SMS/MMS programatically
Uri smsUri = Uri.parse("tel:1234567");
Intent intent = new Intent(Intent.ACTION_VIEW, smsUri);
intent.putExtra("sms_body", "Hello frend, How are you?");
intent.setType("vnd.android-dir/mms-sms");
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment