Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save csabafarkas/3fca037337358c62ee89fabe2a0e34f0 to your computer and use it in GitHub Desktop.
Save csabafarkas/3fca037337358c62ee89fabe2a0e34f0 to your computer and use it in GitHub Desktop.
ShareCompat.IntentBuilder example
private void shareText(String textToShare) {
// use it in an activity or change this to getActivity if it's used from fragment
ShareCompat.IntentBuilder.from(this)
.setChooserTitle("Sharing is Caring")
.setType("text/plain")
.setText("Would you agree?")
.startChooser();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment