i have the following code that launches a share sheet to share some data to a relivant third party app below
ShareCompat.IntentBuilder intentBuilder = ShareCompat.IntentBuilder.from(activity)
.setChooserTitle(title)
.setSubject(subject)
.setText(message)
.setType(type.typeText);
I want to implement some sort of callback so i know whether a user has selected one of the shared providers or if the user simply canceles and clicks the back key to dismiss the share sheet.
is this possible?