summaryrefslogtreecommitdiffstats
path: root/core/java/android/content
diff options
context:
space:
mode:
authorRicardo Cervera <rcervera@google.com>2015-01-16 17:14:44 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-01-16 17:14:44 +0000
commit98f07d901492335f51258655fbfa032fa3f2d58e (patch)
treeffa0f701c6cb53d7bd485e065f135b5ecdb00b00 /core/java/android/content
parent74147527357b9abd9d30b3a2dbd72a5172a35625 (diff)
parent92f6a747085b4b5ed692de4bdb0050c096eae393 (diff)
downloadframeworks_base-98f07d901492335f51258655fbfa032fa3f2d58e.zip
frameworks_base-98f07d901492335f51258655fbfa032fa3f2d58e.tar.gz
frameworks_base-98f07d901492335f51258655fbfa032fa3f2d58e.tar.bz2
am 92f6a747: docs: Added info on noHistory and onActivityResult(). Bug: 13807256
* commit '92f6a747085b4b5ed692de4bdb0050c096eae393': docs: Added info on noHistory and onActivityResult(). Bug: 13807256
Diffstat (limited to 'core/java/android/content')
-rw-r--r--core/java/android/content/Intent.java4
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;
/**