diff options
author | Adam Powell <adamp@google.com> | 2015-05-06 17:49:36 -0700 |
---|---|---|
committer | Adam Powell <adamp@google.com> | 2015-05-11 12:16:19 -0700 |
commit | 7d7580019e44e2e162df01ffff51de20ed0721b3 (patch) | |
tree | 807c0e4a1ae304de424c19b0c44813a0d69f7f8c /core/java/android/content | |
parent | 1c86159142aa8b5d582cd53e1d16b874c99d3bc4 (diff) | |
download | frameworks_base-7d7580019e44e2e162df01ffff51de20ed0721b3.zip frameworks_base-7d7580019e44e2e162df01ffff51de20ed0721b3.tar.gz frameworks_base-7d7580019e44e2e162df01ffff51de20ed0721b3.tar.bz2 |
Bringing new Chooser UI closer to spec
Separate the chooser targets into rows by type. Remove some API that
was redundant with LabeledIntent, simplifying ChooserTarget.
Change-Id: I90de471825f05d85e6ffbe72a32fb597be824a30
Diffstat (limited to 'core/java/android/content')
-rw-r--r-- | core/java/android/content/Intent.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 6f543a8..7d76760 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -3365,14 +3365,6 @@ public class Intent implements Parcelable, Cloneable { public static final String EXTRA_INITIAL_INTENTS = "android.intent.extra.INITIAL_INTENTS"; /** - * A Parcelable[] of {@link android.service.chooser.ChooserTarget ChooserTarget} objects - * as set with {@link #putExtra(String, Parcelable[])} representing additional app-specific - * targets to place at the front of the list of choices. Shown to the user with - * {@link #ACTION_CHOOSER}. - */ - public static final String EXTRA_CHOOSER_TARGETS = "android.intent.extra.CHOOSER_TARGETS"; - - /** * A Bundle forming a mapping of potential target package names to different extras Bundles * to add to the default intent extras in {@link #EXTRA_INTENT} when used with * {@link #ACTION_CHOOSER}. Each key should be a package name. The package need not |