Skip to content

Instantly share code, notes, and snippets.

@Shebella
Created September 22, 2014 10:23
Show Gist options
  • Save Shebella/26fcfde0edf16fc2e568 to your computer and use it in GitHub Desktop.
Save Shebella/26fcfde0edf16fc2e568 to your computer and use it in GitHub Desktop.
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "Your Message Here");
sendIntent.setType("text/plain");
sendIntent.setPackage("Package Name Here");
startActivity(sendIntent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment