Skip to content

Instantly share code, notes, and snippets.

@codesburner
Forked from mstefanko/gist:890465
Created April 5, 2011 08:20
Show Gist options
  • Select an option

  • Save codesburner/903226 to your computer and use it in GitHub Desktop.

Select an option

Save codesburner/903226 to your computer and use it in GitHub Desktop.
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