Skip to content

Instantly share code, notes, and snippets.

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();
}