OSDN Git Service

am 98f07d90: am 92f6a747: docs: Added info on noHistory and onActivityResult(). Bug...
authorRicardo Cervera <rcervera@google.com>
Fri, 16 Jan 2015 17:21:32 +0000 (17:21 +0000)
committerAndroid Git Automerger <android-git-automerger@android.com>
Fri, 16 Jan 2015 17:21:32 +0000 (17:21 +0000)
* commit '98f07d901492335f51258655fbfa032fa3f2d58e':
  docs: Added info on noHistory and onActivityResult(). Bug: 13807256

core/java/android/app/Activity.java
core/java/android/content/Intent.java
docs/html/guide/topics/manifest/activity-element.jd

index 9a57383..fcecd28 100644 (file)
@@ -4326,6 +4326,10 @@ public class Activity extends ContextThemeWrapper
      * 
      * <p>You will receive this call immediately before onResume() when your
      * activity is re-starting.
+     *
+     * <p>This method is never invoked if your activity sets
+     * {@link android.R.styleable#AndroidManifestActivity_noHistory noHistory} to
+     * <code>true</code>.
      * 
      * @param requestCode The integer request code originally supplied to
      *                    startActivityForResult(), allowing you to identify who this
index 228a97d..8ac156a 100644 (file)
@@ -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;
     /**
index 3c623f6..7c71e99 100644 (file)
@@ -593,7 +593,9 @@ visible on screen &mdash; "{@code true}" if it should be finished, and
 <p>
 A value of "{@code true}" means that the activity will not leave a
 historical trace.  It will not remain in the activity stack for the task,
-so the user will not be able to return to it.
+so the user will not be able to return to it. In this case,
+{@link android.app.Activity#onActivityResult onActivityResult()} is never called if you
+start another activity for a result from this activity.
 </p>
 
 <p>