Added in API level 14
    OnShareTargetSelectedListener
interface OnShareTargetSelectedListener
| android.widget.ShareActionProvider.OnShareTargetSelectedListener | 
Listener for the event of selecting a share target.
Summary
| Public methods | |
|---|---|
| abstract Boolean | Called when a share target has been selected. | 
Public methods
onShareTargetSelected
Added in API level 14
      abstract fun onShareTargetSelected(
: ShareActionProvider!,
: Intent!
): Boolean
Called when a share target has been selected. The client can decide whether to perform some action before the sharing is actually performed.
Note: Modifying the intent is not permitted and any changes to the latter will be ignored.
Note: You should not handle the intent here. This callback aims to notify the client that a sharing is being performed, so the client can update the UI if necessary.
| Parameters | |
|---|---|
| source | ShareActionProvider!: The source of the notification. | 
| intent | Intent!: The intent for launching the chosen share target. | 
| Return | |
|---|---|
| Boolean | The return result is ignored. Always return false for consistency. | 
