Skip to content

Instantly share code, notes, and snippets.

@LordRaydenMK
Created October 30, 2013 12:48
Show Gist options
  • Save LordRaydenMK/7232116 to your computer and use it in GitHub Desktop.
Save LordRaydenMK/7232116 to your computer and use it in GitHub Desktop.
Sharing on Android
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment