diff options
author | Ricardo Cervera <rcervera@google.com> | 2015-01-16 17:21:32 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-01-16 17:21:32 +0000 |
commit | e8f6bd484627e16fa2fd9509b0f06056ee44be94 (patch) | |
tree | d4397eb90b2da9532f3a3810caea2ecb617c5403 /core/java/android/content | |
parent | bb600de6e7c5c7a0a1d4b872d2ee100ccc353213 (diff) | |
parent | 98f07d901492335f51258655fbfa032fa3f2d58e (diff) | |
download | frameworks_base-e8f6bd484627e16fa2fd9509b0f06056ee44be94.zip frameworks_base-e8f6bd484627e16fa2fd9509b0f06056ee44be94.tar.gz frameworks_base-e8f6bd484627e16fa2fd9509b0f06056ee44be94.tar.bz2 |
am 98f07d90: am 92f6a747: docs: Added info on noHistory and onActivityResult(). Bug: 13807256
* commit '98f07d901492335f51258655fbfa032fa3f2d58e':
docs: Added info on noHistory and onActivityResult(). Bug: 13807256
Diffstat (limited to 'core/java/android/content')
-rw-r--r-- | core/java/android/content/Intent.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 228a97d..8ac156a 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -3430,6 +3430,10 @@ public class Intent implements Parcelable, Cloneable { * the user navigates away from it, the activity is finished. This may also * be set with the {@link android.R.styleable#AndroidManifestActivity_noHistory * noHistory} attribute. + * + * <p>If set, {@link android.app.Activity#onActivityResult onActivityResult()} + * is never invoked when the current activity starts a new activity which + * sets a result and finishes. */ public static final int FLAG_ACTIVITY_NO_HISTORY = 0x40000000; /** |