Skip to content

Instantly share code, notes, and snippets.

@rainyear
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rainyear/c94b08c6d787aadff9d1 to your computer and use it in GitHub Desktop.
Save rainyear/c94b08c6d787aadff9d1 to your computer and use it in GitHub Desktop.
Android Share to all codes
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_TEXT, getResources().getString(R.string.WAHT_YOU_WANT_TO_SAY));
shareIntent.setType("text/plain");
startActivity(Intent.createChooser(shareIntent, "WHAT_YOU_WANT_DISPLAY"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment