diff options
author | Wu-cheng Li <wuchengli@google.com> | 2009-06-19 03:55:09 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-06-19 03:55:09 -0700 |
commit | 1e3fc65b1f86bc97f4f375ae747658b555978ca7 (patch) | |
tree | e277e2ef4b227e0792e1cc6743b31ebd6c59fa4e /core/java/android/content/Intent.java | |
parent | cc9baea938803dbed4728c6c008c17cefa87336d (diff) | |
parent | 649f99e8347984c1e031dae302830f4c9ebd3df4 (diff) | |
download | frameworks_base-1e3fc65b1f86bc97f4f375ae747658b555978ca7.zip frameworks_base-1e3fc65b1f86bc97f4f375ae747658b555978ca7.tar.gz frameworks_base-1e3fc65b1f86bc97f4f375ae747658b555978ca7.tar.bz2 |
am 649f99e8: Add Intent.ACTION_SEND_MULTIPLE
Merge commit '649f99e8347984c1e031dae302830f4c9ebd3df4'
* commit '649f99e8347984c1e031dae302830f4c9ebd3df4':
Add Intent.ACTION_SEND_MULTIPLE
Diffstat (limited to 'core/java/android/content/Intent.java')
-rw-r--r-- | core/java/android/content/Intent.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 65d09c9..6fe2286 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -915,6 +915,23 @@ public class Intent implements Parcelable { @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) public static final String ACTION_SEND = "android.intent.action.SEND"; /** + * Activity Action: Deliver multiple data to someone else. + * <p> + * Like ACTION_SEND, except the data is multiple. + * <p> + * Input: {@link #getType} is the MIME type of the data being sent. + * get*ArrayListExtra can have either a {@link #EXTRA_TEXT} or {@link + * #EXTRA_STREAM} field, containing the data to be sent. + * <p> + * Optional standard extras, which may be interpreted by some recipients as + * appropriate, are: {@link #EXTRA_EMAIL}, {@link #EXTRA_CC}, + * {@link #EXTRA_BCC}, {@link #EXTRA_SUBJECT}. + * <p> + * Output: nothing. + */ + @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) + public static final String ACTION_SEND_MULTIPLE = "android.intent.action.SEND_MULTIPLE"; + /** * Activity Action: Handle an incoming phone call. * <p>Input: nothing. * <p>Output: nothing. |