diff options
author | Dianne Hackborn <hackbod@google.com> | 2009-11-11 20:25:01 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2009-11-11 20:25:01 -0800 |
commit | c5dc6872dac40f87b6b8261c3cd5260a52325aba (patch) | |
tree | cb16b786b928e8f3c1e9cefd27222e3ebf77ee13 /core/java | |
parent | 4888c7da45b356bfcff5a6564150ca95a0a0afcf (diff) | |
parent | 360d710ebccc2a2b53bf6233e722d3287d585476 (diff) | |
download | frameworks_base-c5dc6872dac40f87b6b8261c3cd5260a52325aba.zip frameworks_base-c5dc6872dac40f87b6b8261c3cd5260a52325aba.tar.gz frameworks_base-c5dc6872dac40f87b6b8261c3cd5260a52325aba.tar.bz2 |
am 360d710e: Merge change I580de484 into eclair
Merge commit '360d710ebccc2a2b53bf6233e722d3287d585476' into eclair-mr2
* commit '360d710ebccc2a2b53bf6233e722d3287d585476':
Fix issue #2256270: Package manager sends bad broadcasts when components change
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/content/Intent.java | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index c676a5b..398f211 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -1275,12 +1275,15 @@ public class Intent implements Parcelable { @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) public static final String ACTION_PACKAGE_REMOVED = "android.intent.action.PACKAGE_REMOVED"; /** - * Broadcast Action: An existing application package has been changed (e.g. a component has been - * enabled or disabled. The data contains the name of the package. + * Broadcast Action: An existing application package has been changed (e.g. + * a component has been enabled or disabled). The data contains the name of + * the package. * <ul> * <li> {@link #EXTRA_UID} containing the integer uid assigned to the package. - * <li> {@link #EXTRA_CHANGED_COMPONENT_NAME} containing the class name of the changed component. - * <li> {@link #EXTRA_DONT_KILL_APP} containing boolean field to override the default action of restarting the application. + * <li> {@link #EXTRA_CHANGED_COMPONENT_NAME_LIST} containing the class name + * of the changed components. + * <li> {@link #EXTRA_DONT_KILL_APP} containing boolean field to override the + * default action of restarting the application. * </ul> * * <p class="note">This is a protected intent that can only be sent @@ -2101,14 +2104,20 @@ public class Intent implements Parcelable { "android.intent.extra.remote_intent_token"; /** - * Used as an int extra field in {@link android.content.Intent#ACTION_PACKAGE_CHANGED} - * intent to supply the name of the component that changed. - * + * @Deprecated See {@link #EXTRA_CHANGED_COMPONENT_NAME_LIST}; this field + * will contain only the first name in the list. */ public static final String EXTRA_CHANGED_COMPONENT_NAME = "android.intent.extra.changed_component_name"; /** + * This field is part of {@link android.content.Intent#ACTION_PACKAGE_CHANGED} + * and contains a string array of all of the components that have changed. + */ + public static final String EXTRA_CHANGED_COMPONENT_NAME_LIST = + "android.intent.extra.changed_component_name_list"; + + /** * @hide * Magic extra system code can use when binding, to give a label for * who it is that has bound to a service. This is an integer giving |