|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.app.ShareCompat
public class ShareCompat
Extra helper functionality for sharing data between activities.
ShareCompat provides functionality to extend the Intent.ACTION_SEND
/
Intent.ACTION_SEND_MULTIPLE
protocol and support retrieving more info
about the activity that invoked a social sharing action.
ShareCompat.IntentBuilder
provides helper functions for constructing a sharing
intent that always includes data about the calling activity and app.
This lets the called activity provide attribution for the app that shared
content. Constructing an intent this way can be done in a method-chaining style.
To obtain an IntentBuilder with info about your calling activity, use the static
method ShareCompat.IntentBuilder.from(Activity)
.
ShareCompat.IntentReader
provides helper functions for parsing the defined extras
within an Intent.ACTION_SEND
or Intent.ACTION_SEND_MULTIPLE
intent
used to launch an activity. You can also obtain a Drawable for the caller's
application icon and the application's localized label (the app's human-readable name).
Social apps that enable sharing content are encouraged to use this information
to call out the app that the content was shared from.
Nested Class Summary | |
---|---|
static class |
ShareCompat.IntentBuilder
IntentBuilder is a helper for constructing Intent.ACTION_SEND and
Intent.ACTION_SEND_MULTIPLE sharing intents and starting activities
to share content. |
static class |
ShareCompat.IntentReader
IntentReader is a helper for reading the data contained within a sharing (ACTION_SEND) Intent. |
Field Summary | |
---|---|
static String |
EXTRA_CALLING_ACTIVITY
Intent extra that stores the ComponentName of the calling activity for
an ACTION_SEND intent. |
static String |
EXTRA_CALLING_PACKAGE
Intent extra that stores the name of the calling package for an ACTION_SEND intent. |
Constructor Summary | |
---|---|
ShareCompat()
|
Method Summary | |
---|---|
static void |
configureMenuItem(android.view.Menu menu,
int menuItemId,
ShareCompat.IntentBuilder shareIntent)
Configure a menu item to act as a sharing action. |
static void |
configureMenuItem(android.view.MenuItem item,
ShareCompat.IntentBuilder shareIntent)
Configure a MenuItem to act as a sharing action. |
static android.content.ComponentName |
getCallingActivity(android.app.Activity calledActivity)
Retrieve the ComponentName of the activity that launched calledActivity from a share intent. |
static String |
getCallingPackage(android.app.Activity calledActivity)
Retrieve the name of the package that launched calledActivity from a share intent. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String EXTRA_CALLING_PACKAGE
Activity.getCallingPackage()
.)
Instead of using this constant directly, consider using getCallingPackage(Activity)
or ShareCompat.IntentReader.getCallingPackage()
.
public static final String EXTRA_CALLING_ACTIVITY
ComponentName
of the calling activity for
an ACTION_SEND intent.
Constructor Detail |
---|
public ShareCompat()
Method Detail |
---|
public static String getCallingPackage(android.app.Activity calledActivity)
Note: This data may have been provided voluntarily by the calling application. As such it should not be trusted for accuracy in the context of security or verification.
calledActivity
- Current activity that was launched to share content
public static android.content.ComponentName getCallingActivity(android.app.Activity calledActivity)
Note: This data may have been provided voluntarily by the calling application. As such it should not be trusted for accuracy in the context of security or verification.
calledActivity
- Current activity that was launched to share content
public static void configureMenuItem(android.view.MenuItem item, ShareCompat.IntentBuilder shareIntent)
MenuItem
to act as a sharing action.
If the app is running on API level 14 or higher (Android 4.0/Ice Cream Sandwich)
this method will configure a ShareActionProvider to provide a more robust UI
for selecting the target of the share. History will be tracked for each calling
activity in a file named with the prefix ".sharecompat_" in the application's
private data directory. If the application wishes to set this MenuItem to show
as an action in the Action Bar it should use
MenuItemCompat.setShowAsAction(MenuItem, int)
to request that behavior
in addition to calling this method.
If the app is running on an older platform version this method will configure a standard activity chooser dialog for the menu item.
During the calling activity's lifecycle, if data within the share intent must change the app should change that state in one of several ways:
ActivityCompat.invalidateOptionsMenu(Activity)
. If the app is running
on API level 11 or above and uses the Action Bar its menu will be recreated and rebuilt.
If not, the activity will receive a call to Activity.onPrepareOptionsMenu(Menu)
the next time the user presses the menu key to open the options menu panel. The activity
can then call configureMenuItem again with a new or altered IntentBuilder to reconfigure
the share menu item.
item
- MenuItem to configure for sharingshareIntent
- IntentBuilder with data about the content to sharepublic static void configureMenuItem(android.view.Menu menu, int menuItemId, ShareCompat.IntentBuilder shareIntent)
menu
- Menu containing the item to use for sharingmenuItemId
- ID of the share item within menushareIntent
- IntentBuilder with data about the content to shareconfigureMenuItem(MenuItem, IntentBuilder)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |