Skip to content

Instantly share code, notes, and snippets.

@mythosil
Created March 29, 2016 14:42
Show Gist options
  • Save mythosil/660001727430ccb9ec96 to your computer and use it in GitHub Desktop.
Save mythosil/660001727430ccb9ec96 to your computer and use it in GitHub Desktop.
How to share messages via Intent
public void fbIntentShare() {
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setPackage("com.facebook.orca"); // facebook messenger
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "Yahoo! JAPAN\n http://yahoo.co.jp");
startActivityForResult(intent, 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment