diff options
author | Ricardo Cervera <rcervera@google.com> | 2014-04-04 11:17:06 -0700 |
---|---|---|
committer | Ricardo Cervera <rcervera@google.com> | 2014-11-05 08:55:51 -0800 |
commit | 92f6a747085b4b5ed692de4bdb0050c096eae393 (patch) | |
tree | 471db3e49dbaeb2043b2ae1bdddebbab8661f375 /core/java/android/content | |
parent | aa7bcf140d95049f1482c896b770de7ba339f7c9 (diff) | |
download | frameworks_base-92f6a747085b4b5ed692de4bdb0050c096eae393.zip frameworks_base-92f6a747085b4b5ed692de4bdb0050c096eae393.tar.gz frameworks_base-92f6a747085b4b5ed692de4bdb0050c096eae393.tar.bz2 |
docs: Added info on noHistory and onActivityResult(). Bug: 13807256
Change-Id: Iae4901a311e76401396f89c552e5b27a49c65c83
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 3c66b68..ad2312a 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -3400,6 +3400,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; /** |