Skip to content

Instantly share code, notes, and snippets.

@csaba-farkas
Created November 29, 2017 18:54
Show Gist options
  • Save csaba-farkas/926cad34afba355dd6c2d786b13242ad to your computer and use it in GitHub Desktop.
Save csaba-farkas/926cad34afba355dd6c2d786b13242ad 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