to top
Android APIs
Added in API level 14
public static interface

ShareActionProvider.OnShareTargetSelectedListener

android.widget.ShareActionProvider.OnShareTargetSelectedListener

Class Overview

Listener for the event of selecting a share target.

Summary

Public Methods

? Examples
abstract boolean onShareTargetSelected( ShareActionProvider source, Intent intent)
Called when a share target has been selected.

Public Methods

public abstract boolean onShareTargetSelected (ShareActionProvider source, Intent intent)

Added in API level 14

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 The source of the notification.
intent The intent for launching the chosen share target.
Returns
  • The return result is ignored. Always return false for consistency.
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.