summaryrefslogtreecommitdiffstats
path: root/core/java/android/content
diff options
context:
space:
mode:
authorRicardo Cervera <rcervera@google.com>2015-01-16 18:36:45 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-01-16 18:36:45 +0000
commit90312d808f4a5181b5cb99c78e64b7e5d1465895 (patch)
tree88bd466ecfa59e6338d84bb7df92fb94ee261664 /core/java/android/content
parent8a7f20f5a4d83580470133a9a325a66edbb7363e (diff)
parent2287879039556ad3c8fce58974e2396b4a2dab45 (diff)
downloadframeworks_base-90312d808f4a5181b5cb99c78e64b7e5d1465895.zip
frameworks_base-90312d808f4a5181b5cb99c78e64b7e5d1465895.tar.gz
frameworks_base-90312d808f4a5181b5cb99c78e64b7e5d1465895.tar.bz2
am 22878790: am 93f94c2c: resolved conflicts for merge of e8f6bd48 to lmp-dev
* commit '2287879039556ad3c8fce58974e2396b4a2dab45': 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 af7ec5e..2fe727c 100644
--- a/core/java/android/content/Intent.java
+++ b/core/java/android/content/Intent.java
@@ -3610,6 +3610,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;
/**