diff options
| author | 2023-02-16 13:48:25 +0000 | |
|---|---|---|
| committer | 2023-02-16 13:48:25 +0000 | |
| commit | e8544a37420639fdcc2854c6a5eeb09607168e22 (patch) | |
| tree | d7fbe2660c476ce4bb167fed88c69536053f4c4c | |
| parent | ecfcdcb6a102459af8de3eb1855ba4f6bb88ce38 (diff) | |
| parent | 01011daeff9cdea030c362af0294dba9703c0c53 (diff) | |
Merge "EXTRA_CHOOSER_PAYLOAD_RESELECTION_ACTION -> EXTRA_CHOOSER_MODIFY_SHARE_ACTION" into tm-qpr-dev
| -rw-r--r-- | core/java/android/content/Intent.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 3daee1fdd01b..809dc3c41188 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -5741,14 +5741,13 @@ public class Intent implements Parcelable, Cloneable { /** * Optional argument to be used with {@link #ACTION_CHOOSER}. - * A {@link android.app.PendingIntent} to be sent when the user wants to do payload reselection - * in the sharesheet. - * A reselection action allows the user to return to the source app to change the content being - * shared. + * A {@link android.app.PendingIntent} to be sent when the user wants to modify the content that + * they're sharing. This can be used to allow the user to return to the source app to, for + * example, select different media. * @hide */ - public static final String EXTRA_CHOOSER_PAYLOAD_RESELECTION_ACTION = - "android.intent.extra.CHOOSER_PAYLOAD_RESELECTION_ACTION"; + public static final String EXTRA_CHOOSER_MODIFY_SHARE_ACTION = + "android.intent.extra.CHOOSER_MODIFY_SHARE_ACTION"; /** * An {@code ArrayList} of {@code String} annotations describing content for |