Fragment.java revision a5fc6f006f67867417b7a427de6e7394c4312dec
1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.app;
18
19import android.animation.Animator;
20import android.annotation.NonNull;
21import android.annotation.Nullable;
22import android.annotation.StringRes;
23import android.content.ComponentCallbacks2;
24import android.content.Context;
25import android.content.Intent;
26import android.content.res.Configuration;
27import android.content.res.Resources;
28import android.content.res.TypedArray;
29import android.os.Bundle;
30import android.os.Parcel;
31import android.os.Parcelable;
32import android.transition.Transition;
33import android.transition.TransitionInflater;
34import android.transition.TransitionSet;
35import android.util.AndroidRuntimeException;
36import android.util.ArrayMap;
37import android.util.AttributeSet;
38import android.util.DebugUtils;
39import android.util.Log;
40import android.util.SparseArray;
41import android.util.SuperNotCalledException;
42import android.view.ContextMenu;
43import android.view.ContextMenu.ContextMenuInfo;
44import android.view.LayoutInflater;
45import android.view.Menu;
46import android.view.MenuInflater;
47import android.view.MenuItem;
48import android.view.View;
49import android.view.View.OnCreateContextMenuListener;
50import android.view.ViewGroup;
51import android.widget.AdapterView;
52
53import java.io.FileDescriptor;
54import java.io.PrintWriter;
55
56final class FragmentState implements Parcelable {
57    final String mClassName;
58    final int mIndex;
59    final boolean mFromLayout;
60    final int mFragmentId;
61    final int mContainerId;
62    final String mTag;
63    final boolean mRetainInstance;
64    final boolean mDetached;
65    final Bundle mArguments;
66
67    Bundle mSavedFragmentState;
68
69    Fragment mInstance;
70
71    public FragmentState(Fragment frag) {
72        mClassName = frag.getClass().getName();
73        mIndex = frag.mIndex;
74        mFromLayout = frag.mFromLayout;
75        mFragmentId = frag.mFragmentId;
76        mContainerId = frag.mContainerId;
77        mTag = frag.mTag;
78        mRetainInstance = frag.mRetainInstance;
79        mDetached = frag.mDetached;
80        mArguments = frag.mArguments;
81    }
82
83    public FragmentState(Parcel in) {
84        mClassName = in.readString();
85        mIndex = in.readInt();
86        mFromLayout = in.readInt() != 0;
87        mFragmentId = in.readInt();
88        mContainerId = in.readInt();
89        mTag = in.readString();
90        mRetainInstance = in.readInt() != 0;
91        mDetached = in.readInt() != 0;
92        mArguments = in.readBundle();
93        mSavedFragmentState = in.readBundle();
94    }
95
96    public Fragment instantiate(FragmentHostCallback host, Fragment parent) {
97        if (mInstance != null) {
98            return mInstance;
99        }
100
101        final Context context = host.getContext();
102        if (mArguments != null) {
103            mArguments.setClassLoader(context.getClassLoader());
104        }
105
106        mInstance = Fragment.instantiate(context, mClassName, mArguments);
107
108        if (mSavedFragmentState != null) {
109            mSavedFragmentState.setClassLoader(context.getClassLoader());
110            mInstance.mSavedFragmentState = mSavedFragmentState;
111        }
112        mInstance.setIndex(mIndex, parent);
113        mInstance.mFromLayout = mFromLayout;
114        mInstance.mRestored = true;
115        mInstance.mFragmentId = mFragmentId;
116        mInstance.mContainerId = mContainerId;
117        mInstance.mTag = mTag;
118        mInstance.mRetainInstance = mRetainInstance;
119        mInstance.mDetached = mDetached;
120        mInstance.mFragmentManager = host.mFragmentManager;
121        if (FragmentManagerImpl.DEBUG) Log.v(FragmentManagerImpl.TAG,
122                "Instantiated fragment " + mInstance);
123
124        return mInstance;
125    }
126
127    public int describeContents() {
128        return 0;
129    }
130
131    public void writeToParcel(Parcel dest, int flags) {
132        dest.writeString(mClassName);
133        dest.writeInt(mIndex);
134        dest.writeInt(mFromLayout ? 1 : 0);
135        dest.writeInt(mFragmentId);
136        dest.writeInt(mContainerId);
137        dest.writeString(mTag);
138        dest.writeInt(mRetainInstance ? 1 : 0);
139        dest.writeInt(mDetached ? 1 : 0);
140        dest.writeBundle(mArguments);
141        dest.writeBundle(mSavedFragmentState);
142    }
143
144    public static final Parcelable.Creator<FragmentState> CREATOR
145            = new Parcelable.Creator<FragmentState>() {
146        public FragmentState createFromParcel(Parcel in) {
147            return new FragmentState(in);
148        }
149
150        public FragmentState[] newArray(int size) {
151            return new FragmentState[size];
152        }
153    };
154}
155
156/**
157 * A Fragment is a piece of an application's user interface or behavior
158 * that can be placed in an {@link Activity}.  Interaction with fragments
159 * is done through {@link FragmentManager}, which can be obtained via
160 * {@link Activity#getFragmentManager() Activity.getFragmentManager()} and
161 * {@link Fragment#getFragmentManager() Fragment.getFragmentManager()}.
162 *
163 * <p>The Fragment class can be used many ways to achieve a wide variety of
164 * results. In its core, it represents a particular operation or interface
165 * that is running within a larger {@link Activity}.  A Fragment is closely
166 * tied to the Activity it is in, and can not be used apart from one.  Though
167 * Fragment defines its own lifecycle, that lifecycle is dependent on its
168 * activity: if the activity is stopped, no fragments inside of it can be
169 * started; when the activity is destroyed, all fragments will be destroyed.
170 *
171 * <p>All subclasses of Fragment must include a public no-argument constructor.
172 * The framework will often re-instantiate a fragment class when needed,
173 * in particular during state restore, and needs to be able to find this
174 * constructor to instantiate it.  If the no-argument constructor is not
175 * available, a runtime exception will occur in some cases during state
176 * restore.
177 *
178 * <p>Topics covered here:
179 * <ol>
180 * <li><a href="#OlderPlatforms">Older Platforms</a>
181 * <li><a href="#Lifecycle">Lifecycle</a>
182 * <li><a href="#Layout">Layout</a>
183 * <li><a href="#BackStack">Back Stack</a>
184 * </ol>
185 *
186 * <div class="special reference">
187 * <h3>Developer Guides</h3>
188 * <p>For more information about using fragments, read the
189 * <a href="{@docRoot}guide/topics/fundamentals/fragments.html">Fragments</a> developer guide.</p>
190 * </div>
191 *
192 * <a name="OlderPlatforms"></a>
193 * <h3>Older Platforms</h3>
194 *
195 * While the Fragment API was introduced in
196 * {@link android.os.Build.VERSION_CODES#HONEYCOMB}, a version of the API
197 * at is also available for use on older platforms through
198 * {@link android.support.v4.app.FragmentActivity}.  See the blog post
199 * <a href="http://android-developers.blogspot.com/2011/03/fragments-for-all.html">
200 * Fragments For All</a> for more details.
201 *
202 * <a name="Lifecycle"></a>
203 * <h3>Lifecycle</h3>
204 *
205 * <p>Though a Fragment's lifecycle is tied to its owning activity, it has
206 * its own wrinkle on the standard activity lifecycle.  It includes basic
207 * activity lifecycle methods such as {@link #onResume}, but also important
208 * are methods related to interactions with the activity and UI generation.
209 *
210 * <p>The core series of lifecycle methods that are called to bring a fragment
211 * up to resumed state (interacting with the user) are:
212 *
213 * <ol>
214 * <li> {@link #onAttach} called once the fragment is associated with its activity.
215 * <li> {@link #onCreate} called to do initial creation of the fragment.
216 * <li> {@link #onCreateView} creates and returns the view hierarchy associated
217 * with the fragment.
218 * <li> {@link #onActivityCreated} tells the fragment that its activity has
219 * completed its own {@link Activity#onCreate Activity.onCreate()}.
220 * <li> {@link #onViewStateRestored} tells the fragment that all of the saved
221 * state of its view hierarchy has been restored.
222 * <li> {@link #onStart} makes the fragment visible to the user (based on its
223 * containing activity being started).
224 * <li> {@link #onResume} makes the fragment begin interacting with the user
225 * (based on its containing activity being resumed).
226 * </ol>
227 *
228 * <p>As a fragment is no longer being used, it goes through a reverse
229 * series of callbacks:
230 *
231 * <ol>
232 * <li> {@link #onPause} fragment is no longer interacting with the user either
233 * because its activity is being paused or a fragment operation is modifying it
234 * in the activity.
235 * <li> {@link #onStop} fragment is no longer visible to the user either
236 * because its activity is being stopped or a fragment operation is modifying it
237 * in the activity.
238 * <li> {@link #onDestroyView} allows the fragment to clean up resources
239 * associated with its View.
240 * <li> {@link #onDestroy} called to do final cleanup of the fragment's state.
241 * <li> {@link #onDetach} called immediately prior to the fragment no longer
242 * being associated with its activity.
243 * </ol>
244 *
245 * <a name="Layout"></a>
246 * <h3>Layout</h3>
247 *
248 * <p>Fragments can be used as part of your application's layout, allowing
249 * you to better modularize your code and more easily adjust your user
250 * interface to the screen it is running on.  As an example, we can look
251 * at a simple program consisting of a list of items, and display of the
252 * details of each item.</p>
253 *
254 * <p>An activity's layout XML can include <code>&lt;fragment&gt;</code> tags
255 * to embed fragment instances inside of the layout.  For example, here is
256 * a simple layout that embeds one fragment:</p>
257 *
258 * {@sample development/samples/ApiDemos/res/layout/fragment_layout.xml layout}
259 *
260 * <p>The layout is installed in the activity in the normal way:</p>
261 *
262 * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/FragmentLayout.java
263 *      main}
264 *
265 * <p>The titles fragment, showing a list of titles, is fairly simple, relying
266 * on {@link ListFragment} for most of its work.  Note the implementation of
267 * clicking an item: depending on the current activity's layout, it can either
268 * create and display a new fragment to show the details in-place (more about
269 * this later), or start a new activity to show the details.</p>
270 *
271 * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/FragmentLayout.java
272 *      titles}
273 *
274 * <p>The details fragment showing the contents of a selected item just
275 * displays a string of text based on an index of a string array built in to
276 * the app:</p>
277 *
278 * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/FragmentLayout.java
279 *      details}
280 *
281 * <p>In this case when the user clicks on a title, there is no details
282 * container in the current activity, so the titles fragment's click code will
283 * launch a new activity to display the details fragment:</p>
284 *
285 * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/FragmentLayout.java
286 *      details_activity}
287 *
288 * <p>However the screen may be large enough to show both the list of titles
289 * and details about the currently selected title.  To use such a layout on
290 * a landscape screen, this alternative layout can be placed under layout-land:</p>
291 *
292 * {@sample development/samples/ApiDemos/res/layout-land/fragment_layout.xml layout}
293 *
294 * <p>Note how the prior code will adjust to this alternative UI flow: the titles
295 * fragment will now embed the details fragment inside of this activity, and the
296 * details activity will finish itself if it is running in a configuration
297 * where the details can be shown in-place.
298 *
299 * <p>When a configuration change causes the activity hosting these fragments
300 * to restart, its new instance may use a different layout that doesn't
301 * include the same fragments as the previous layout.  In this case all of
302 * the previous fragments will still be instantiated and running in the new
303 * instance.  However, any that are no longer associated with a &lt;fragment&gt;
304 * tag in the view hierarchy will not have their content view created
305 * and will return false from {@link #isInLayout}.  (The code here also shows
306 * how you can determine if a fragment placed in a container is no longer
307 * running in a layout with that container and avoid creating its view hierarchy
308 * in that case.)
309 *
310 * <p>The attributes of the &lt;fragment&gt; tag are used to control the
311 * LayoutParams provided when attaching the fragment's view to the parent
312 * container.  They can also be parsed by the fragment in {@link #onInflate}
313 * as parameters.
314 *
315 * <p>The fragment being instantiated must have some kind of unique identifier
316 * so that it can be re-associated with a previous instance if the parent
317 * activity needs to be destroyed and recreated.  This can be provided these
318 * ways:
319 *
320 * <ul>
321 * <li>If nothing is explicitly supplied, the view ID of the container will
322 * be used.
323 * <li><code>android:tag</code> can be used in &lt;fragment&gt; to provide
324 * a specific tag name for the fragment.
325 * <li><code>android:id</code> can be used in &lt;fragment&gt; to provide
326 * a specific identifier for the fragment.
327 * </ul>
328 *
329 * <a name="BackStack"></a>
330 * <h3>Back Stack</h3>
331 *
332 * <p>The transaction in which fragments are modified can be placed on an
333 * internal back-stack of the owning activity.  When the user presses back
334 * in the activity, any transactions on the back stack are popped off before
335 * the activity itself is finished.
336 *
337 * <p>For example, consider this simple fragment that is instantiated with
338 * an integer argument and displays that in a TextView in its UI:</p>
339 *
340 * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/FragmentStack.java
341 *      fragment}
342 *
343 * <p>A function that creates a new instance of the fragment, replacing
344 * whatever current fragment instance is being shown and pushing that change
345 * on to the back stack could be written as:
346 *
347 * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/FragmentStack.java
348 *      add_stack}
349 *
350 * <p>After each call to this function, a new entry is on the stack, and
351 * pressing back will pop it to return the user to whatever previous state
352 * the activity UI was in.
353 */
354public class Fragment implements ComponentCallbacks2, OnCreateContextMenuListener {
355    private static final ArrayMap<String, Class<?>> sClassMap =
356            new ArrayMap<String, Class<?>>();
357
358    static final int INVALID_STATE = -1;   // Invalid state used as a null value.
359    static final int INITIALIZING = 0;     // Not yet created.
360    static final int CREATED = 1;          // Created.
361    static final int ACTIVITY_CREATED = 2; // The activity has finished its creation.
362    static final int STOPPED = 3;          // Fully created, not started.
363    static final int STARTED = 4;          // Created and started, not resumed.
364    static final int RESUMED = 5;          // Created started and resumed.
365
366    private static final Transition USE_DEFAULT_TRANSITION = new TransitionSet();
367
368    int mState = INITIALIZING;
369
370    // Non-null if the fragment's view hierarchy is currently animating away,
371    // meaning we need to wait a bit on completely destroying it.  This is the
372    // animation that is running.
373    Animator mAnimatingAway;
374
375    // If mAnimatingAway != null, this is the state we should move to once the
376    // animation is done.
377    int mStateAfterAnimating;
378
379    // When instantiated from saved state, this is the saved state.
380    Bundle mSavedFragmentState;
381    SparseArray<Parcelable> mSavedViewState;
382
383    // Index into active fragment array.
384    int mIndex = -1;
385
386    // Internal unique name for this fragment;
387    String mWho;
388
389    // Construction arguments;
390    Bundle mArguments;
391
392    // Target fragment.
393    Fragment mTarget;
394
395    // For use when retaining a fragment: this is the index of the last mTarget.
396    int mTargetIndex = -1;
397
398    // Target request code.
399    int mTargetRequestCode;
400
401    // True if the fragment is in the list of added fragments.
402    boolean mAdded;
403
404    // If set this fragment is being removed from its activity.
405    boolean mRemoving;
406
407    // True if the fragment is in the resumed state.
408    boolean mResumed;
409
410    // Set to true if this fragment was instantiated from a layout file.
411    boolean mFromLayout;
412
413    // Set to true when the view has actually been inflated in its layout.
414    boolean mInLayout;
415
416    // True if this fragment has been restored from previously saved state.
417    boolean mRestored;
418
419    // Number of active back stack entries this fragment is in.
420    int mBackStackNesting;
421
422    // The fragment manager we are associated with.  Set as soon as the
423    // fragment is used in a transaction; cleared after it has been removed
424    // from all transactions.
425    FragmentManagerImpl mFragmentManager;
426
427    // Activity this fragment is attached to.
428    FragmentHostCallback mHost;
429
430    // Private fragment manager for child fragments inside of this one.
431    FragmentManagerImpl mChildFragmentManager;
432
433    // If this Fragment is contained in another Fragment, this is that container.
434    Fragment mParentFragment;
435
436    // The optional identifier for this fragment -- either the container ID if it
437    // was dynamically added to the view hierarchy, or the ID supplied in
438    // layout.
439    int mFragmentId;
440
441    // When a fragment is being dynamically added to the view hierarchy, this
442    // is the identifier of the parent container it is being added to.
443    int mContainerId;
444
445    // The optional named tag for this fragment -- usually used to find
446    // fragments that are not part of the layout.
447    String mTag;
448
449    // Set to true when the app has requested that this fragment be hidden
450    // from the user.
451    boolean mHidden;
452
453    // Set to true when the app has requested that this fragment be detached.
454    boolean mDetached;
455
456    // If set this fragment would like its instance retained across
457    // configuration changes.
458    boolean mRetainInstance;
459
460    // If set this fragment is being retained across the current config change.
461    boolean mRetaining;
462
463    // If set this fragment has menu items to contribute.
464    boolean mHasMenu;
465
466    // Set to true to allow the fragment's menu to be shown.
467    boolean mMenuVisible = true;
468
469    // Used to verify that subclasses call through to super class.
470    boolean mCalled;
471
472    // If app has requested a specific animation, this is the one to use.
473    int mNextAnim;
474
475    // The parent container of the fragment after dynamically added to UI.
476    ViewGroup mContainer;
477
478    // The View generated for this fragment.
479    View mView;
480
481    // Whether this fragment should defer starting until after other fragments
482    // have been started and their loaders are finished.
483    boolean mDeferStart;
484
485    // Hint provided by the app that this fragment is currently visible to the user.
486    boolean mUserVisibleHint = true;
487
488    LoaderManagerImpl mLoaderManager;
489    boolean mLoadersStarted;
490    boolean mCheckedForLoaderManager;
491
492    private Transition mEnterTransition = null;
493    private Transition mReturnTransition = USE_DEFAULT_TRANSITION;
494    private Transition mExitTransition = null;
495    private Transition mReenterTransition = USE_DEFAULT_TRANSITION;
496    private Transition mSharedElementEnterTransition = null;
497    private Transition mSharedElementReturnTransition = USE_DEFAULT_TRANSITION;
498    private Boolean mAllowReturnTransitionOverlap;
499    private Boolean mAllowEnterTransitionOverlap;
500
501    SharedElementCallback mEnterTransitionCallback = SharedElementCallback.NULL_CALLBACK;
502    SharedElementCallback mExitTransitionCallback = SharedElementCallback.NULL_CALLBACK;
503
504    /**
505     * State information that has been retrieved from a fragment instance
506     * through {@link FragmentManager#saveFragmentInstanceState(Fragment)
507     * FragmentManager.saveFragmentInstanceState}.
508     */
509    public static class SavedState implements Parcelable {
510        final Bundle mState;
511
512        SavedState(Bundle state) {
513            mState = state;
514        }
515
516        SavedState(Parcel in, ClassLoader loader) {
517            mState = in.readBundle();
518            if (loader != null && mState != null) {
519                mState.setClassLoader(loader);
520            }
521        }
522
523        @Override
524        public int describeContents() {
525            return 0;
526        }
527
528        @Override
529        public void writeToParcel(Parcel dest, int flags) {
530            dest.writeBundle(mState);
531        }
532
533        public static final Parcelable.ClassLoaderCreator<SavedState> CREATOR
534                = new Parcelable.ClassLoaderCreator<SavedState>() {
535            public SavedState createFromParcel(Parcel in) {
536                return new SavedState(in, null);
537            }
538
539            public SavedState createFromParcel(Parcel in, ClassLoader loader) {
540                return new SavedState(in, loader);
541            }
542
543            public SavedState[] newArray(int size) {
544                return new SavedState[size];
545            }
546        };
547    }
548
549    /**
550     * Thrown by {@link Fragment#instantiate(Context, String, Bundle)} when
551     * there is an instantiation failure.
552     */
553    static public class InstantiationException extends AndroidRuntimeException {
554        public InstantiationException(String msg, Exception cause) {
555            super(msg, cause);
556        }
557    }
558
559    /**
560     * Default constructor.  <strong>Every</strong> fragment must have an
561     * empty constructor, so it can be instantiated when restoring its
562     * activity's state.  It is strongly recommended that subclasses do not
563     * have other constructors with parameters, since these constructors
564     * will not be called when the fragment is re-instantiated; instead,
565     * arguments can be supplied by the caller with {@link #setArguments}
566     * and later retrieved by the Fragment with {@link #getArguments}.
567     *
568     * <p>Applications should generally not implement a constructor.  The
569     * first place application code can run where the fragment is ready to
570     * be used is in {@link #onAttach(Activity)}, the point where the fragment
571     * is actually associated with its activity.  Some applications may also
572     * want to implement {@link #onInflate} to retrieve attributes from a
573     * layout resource, though should take care here because this happens for
574     * the fragment is attached to its activity.
575     */
576    public Fragment() {
577    }
578
579    /**
580     * Like {@link #instantiate(Context, String, Bundle)} but with a null
581     * argument Bundle.
582     */
583    public static Fragment instantiate(Context context, String fname) {
584        return instantiate(context, fname, null);
585    }
586
587    /**
588     * Create a new instance of a Fragment with the given class name.  This is
589     * the same as calling its empty constructor.
590     *
591     * @param context The calling context being used to instantiate the fragment.
592     * This is currently just used to get its ClassLoader.
593     * @param fname The class name of the fragment to instantiate.
594     * @param args Bundle of arguments to supply to the fragment, which it
595     * can retrieve with {@link #getArguments()}.  May be null.
596     * @return Returns a new fragment instance.
597     * @throws InstantiationException If there is a failure in instantiating
598     * the given fragment class.  This is a runtime exception; it is not
599     * normally expected to happen.
600     */
601    public static Fragment instantiate(Context context, String fname, @Nullable Bundle args) {
602        try {
603            Class<?> clazz = sClassMap.get(fname);
604            if (clazz == null) {
605                // Class not found in the cache, see if it's real, and try to add it
606                clazz = context.getClassLoader().loadClass(fname);
607                if (!Fragment.class.isAssignableFrom(clazz)) {
608                    throw new InstantiationException("Trying to instantiate a class " + fname
609                            + " that is not a Fragment", new ClassCastException());
610                }
611                sClassMap.put(fname, clazz);
612            }
613            Fragment f = (Fragment)clazz.newInstance();
614            if (args != null) {
615                args.setClassLoader(f.getClass().getClassLoader());
616                f.mArguments = args;
617            }
618            return f;
619        } catch (ClassNotFoundException e) {
620            throw new InstantiationException("Unable to instantiate fragment " + fname
621                    + ": make sure class name exists, is public, and has an"
622                    + " empty constructor that is public", e);
623        } catch (java.lang.InstantiationException e) {
624            throw new InstantiationException("Unable to instantiate fragment " + fname
625                    + ": make sure class name exists, is public, and has an"
626                    + " empty constructor that is public", e);
627        } catch (IllegalAccessException e) {
628            throw new InstantiationException("Unable to instantiate fragment " + fname
629                    + ": make sure class name exists, is public, and has an"
630                    + " empty constructor that is public", e);
631        }
632    }
633
634    final void restoreViewState(Bundle savedInstanceState) {
635        if (mSavedViewState != null) {
636            mView.restoreHierarchyState(mSavedViewState);
637            mSavedViewState = null;
638        }
639        mCalled = false;
640        onViewStateRestored(savedInstanceState);
641        if (!mCalled) {
642            throw new SuperNotCalledException("Fragment " + this
643                    + " did not call through to super.onViewStateRestored()");
644        }
645    }
646
647    final void setIndex(int index, Fragment parent) {
648        mIndex = index;
649        if (parent != null) {
650            mWho = parent.mWho + ":" + mIndex;
651        } else {
652            mWho = "android:fragment:" + mIndex;
653        }
654    }
655
656    final boolean isInBackStack() {
657        return mBackStackNesting > 0;
658    }
659
660    /**
661     * Subclasses can not override equals().
662     */
663    @Override final public boolean equals(Object o) {
664        return super.equals(o);
665    }
666
667    /**
668     * Subclasses can not override hashCode().
669     */
670    @Override final public int hashCode() {
671        return super.hashCode();
672    }
673
674    @Override
675    public String toString() {
676        StringBuilder sb = new StringBuilder(128);
677        DebugUtils.buildShortClassTag(this, sb);
678        if (mIndex >= 0) {
679            sb.append(" #");
680            sb.append(mIndex);
681        }
682        if (mFragmentId != 0) {
683            sb.append(" id=0x");
684            sb.append(Integer.toHexString(mFragmentId));
685        }
686        if (mTag != null) {
687            sb.append(" ");
688            sb.append(mTag);
689        }
690        sb.append('}');
691        return sb.toString();
692    }
693
694    /**
695     * Return the identifier this fragment is known by.  This is either
696     * the android:id value supplied in a layout or the container view ID
697     * supplied when adding the fragment.
698     */
699    final public int getId() {
700        return mFragmentId;
701    }
702
703    /**
704     * Get the tag name of the fragment, if specified.
705     */
706    final public String getTag() {
707        return mTag;
708    }
709
710    /**
711     * Supply the construction arguments for this fragment.  This can only
712     * be called before the fragment has been attached to its activity; that
713     * is, you should call it immediately after constructing the fragment.  The
714     * arguments supplied here will be retained across fragment destroy and
715     * creation.
716     */
717    public void setArguments(Bundle args) {
718        if (mIndex >= 0) {
719            throw new IllegalStateException("Fragment already active");
720        }
721        mArguments = args;
722    }
723
724    /**
725     * Return the arguments supplied to {@link #setArguments}, if any.
726     */
727    final public Bundle getArguments() {
728        return mArguments;
729    }
730
731    /**
732     * Set the initial saved state that this Fragment should restore itself
733     * from when first being constructed, as returned by
734     * {@link FragmentManager#saveFragmentInstanceState(Fragment)
735     * FragmentManager.saveFragmentInstanceState}.
736     *
737     * @param state The state the fragment should be restored from.
738     */
739    public void setInitialSavedState(SavedState state) {
740        if (mIndex >= 0) {
741            throw new IllegalStateException("Fragment already active");
742        }
743        mSavedFragmentState = state != null && state.mState != null
744                ? state.mState : null;
745    }
746
747    /**
748     * Optional target for this fragment.  This may be used, for example,
749     * if this fragment is being started by another, and when done wants to
750     * give a result back to the first.  The target set here is retained
751     * across instances via {@link FragmentManager#putFragment
752     * FragmentManager.putFragment()}.
753     *
754     * @param fragment The fragment that is the target of this one.
755     * @param requestCode Optional request code, for convenience if you
756     * are going to call back with {@link #onActivityResult(int, int, Intent)}.
757     */
758    public void setTargetFragment(Fragment fragment, int requestCode) {
759        mTarget = fragment;
760        mTargetRequestCode = requestCode;
761    }
762
763    /**
764     * Return the target fragment set by {@link #setTargetFragment}.
765     */
766    final public Fragment getTargetFragment() {
767        return mTarget;
768    }
769
770    /**
771     * Return the target request code set by {@link #setTargetFragment}.
772     */
773    final public int getTargetRequestCode() {
774        return mTargetRequestCode;
775    }
776
777    /**
778     * Return the {@link Context} this fragment is currently associated with.
779     */
780    public Context getContext() {
781        return mHost == null ? null : mHost.getContext();
782    }
783
784    /**
785     * Return the Activity this fragment is currently associated with.
786     */
787    final public Activity getActivity() {
788        return mHost == null ? null : mHost.getActivity();
789    }
790
791    /**
792     * Return the host object of this fragment. May return {@code null} if the fragment
793     * isn't currently being hosted.
794     */
795    @Nullable
796    final public Object getHost() {
797        return mHost == null ? null : mHost.onGetHost();
798    }
799
800    /**
801     * Return <code>getActivity().getResources()</code>.
802     */
803    final public Resources getResources() {
804        if (mHost == null) {
805            throw new IllegalStateException("Fragment " + this + " not attached to Activity");
806        }
807        return mHost.getContext().getResources();
808    }
809
810    /**
811     * Return a localized, styled CharSequence from the application's package's
812     * default string table.
813     *
814     * @param resId Resource id for the CharSequence text
815     */
816    public final CharSequence getText(@StringRes int resId) {
817        return getResources().getText(resId);
818    }
819
820    /**
821     * Return a localized string from the application's package's
822     * default string table.
823     *
824     * @param resId Resource id for the string
825     */
826    public final String getString(@StringRes int resId) {
827        return getResources().getString(resId);
828    }
829
830    /**
831     * Return a localized formatted string from the application's package's
832     * default string table, substituting the format arguments as defined in
833     * {@link java.util.Formatter} and {@link java.lang.String#format}.
834     *
835     * @param resId Resource id for the format string
836     * @param formatArgs The format arguments that will be used for substitution.
837     */
838
839    public final String getString(@StringRes int resId, Object... formatArgs) {
840        return getResources().getString(resId, formatArgs);
841    }
842
843    /**
844     * Return the FragmentManager for interacting with fragments associated
845     * with this fragment's activity.  Note that this will be non-null slightly
846     * before {@link #getActivity()}, during the time from when the fragment is
847     * placed in a {@link FragmentTransaction} until it is committed and
848     * attached to its activity.
849     *
850     * <p>If this Fragment is a child of another Fragment, the FragmentManager
851     * returned here will be the parent's {@link #getChildFragmentManager()}.
852     */
853    final public FragmentManager getFragmentManager() {
854        return mFragmentManager;
855    }
856
857    /**
858     * Return a private FragmentManager for placing and managing Fragments
859     * inside of this Fragment.
860     */
861    final public FragmentManager getChildFragmentManager() {
862        if (mChildFragmentManager == null) {
863            instantiateChildFragmentManager();
864            if (mState >= RESUMED) {
865                mChildFragmentManager.dispatchResume();
866            } else if (mState >= STARTED) {
867                mChildFragmentManager.dispatchStart();
868            } else if (mState >= ACTIVITY_CREATED) {
869                mChildFragmentManager.dispatchActivityCreated();
870            } else if (mState >= CREATED) {
871                mChildFragmentManager.dispatchCreate();
872            }
873        }
874        return mChildFragmentManager;
875    }
876
877    /**
878     * Returns the parent Fragment containing this Fragment.  If this Fragment
879     * is attached directly to an Activity, returns null.
880     */
881    final public Fragment getParentFragment() {
882        return mParentFragment;
883    }
884
885    /**
886     * Return true if the fragment is currently added to its activity.
887     */
888    final public boolean isAdded() {
889        return mHost != null && mAdded;
890    }
891
892    /**
893     * Return true if the fragment has been explicitly detached from the UI.
894     * That is, {@link FragmentTransaction#detach(Fragment)
895     * FragmentTransaction.detach(Fragment)} has been used on it.
896     */
897    final public boolean isDetached() {
898        return mDetached;
899    }
900
901    /**
902     * Return true if this fragment is currently being removed from its
903     * activity.  This is  <em>not</em> whether its activity is finishing, but
904     * rather whether it is in the process of being removed from its activity.
905     */
906    final public boolean isRemoving() {
907        return mRemoving;
908    }
909
910    /**
911     * Return true if the layout is included as part of an activity view
912     * hierarchy via the &lt;fragment&gt; tag.  This will always be true when
913     * fragments are created through the &lt;fragment&gt; tag, <em>except</em>
914     * in the case where an old fragment is restored from a previous state and
915     * it does not appear in the layout of the current state.
916     */
917    final public boolean isInLayout() {
918        return mInLayout;
919    }
920
921    /**
922     * Return true if the fragment is in the resumed state.  This is true
923     * for the duration of {@link #onResume()} and {@link #onPause()} as well.
924     */
925    final public boolean isResumed() {
926        return mResumed;
927    }
928
929    /**
930     * Return true if the fragment is currently visible to the user.  This means
931     * it: (1) has been added, (2) has its view attached to the window, and
932     * (3) is not hidden.
933     */
934    final public boolean isVisible() {
935        return isAdded() && !isHidden() && mView != null
936                && mView.getWindowToken() != null && mView.getVisibility() == View.VISIBLE;
937    }
938
939    /**
940     * Return true if the fragment has been hidden.  By default fragments
941     * are shown.  You can find out about changes to this state with
942     * {@link #onHiddenChanged}.  Note that the hidden state is orthogonal
943     * to other states -- that is, to be visible to the user, a fragment
944     * must be both started and not hidden.
945     */
946    final public boolean isHidden() {
947        return mHidden;
948    }
949
950    /**
951     * Called when the hidden state (as returned by {@link #isHidden()} of
952     * the fragment has changed.  Fragments start out not hidden; this will
953     * be called whenever the fragment changes state from that.
954     * @param hidden True if the fragment is now hidden, false if it is not
955     * visible.
956     */
957    public void onHiddenChanged(boolean hidden) {
958    }
959
960    /**
961     * Control whether a fragment instance is retained across Activity
962     * re-creation (such as from a configuration change).  This can only
963     * be used with fragments not in the back stack.  If set, the fragment
964     * lifecycle will be slightly different when an activity is recreated:
965     * <ul>
966     * <li> {@link #onDestroy()} will not be called (but {@link #onDetach()} still
967     * will be, because the fragment is being detached from its current activity).
968     * <li> {@link #onCreate(Bundle)} will not be called since the fragment
969     * is not being re-created.
970     * <li> {@link #onAttach(Activity)} and {@link #onActivityCreated(Bundle)} <b>will</b>
971     * still be called.
972     * </ul>
973     */
974    public void setRetainInstance(boolean retain) {
975        if (retain && mParentFragment != null) {
976            throw new IllegalStateException(
977                    "Can't retain fragements that are nested in other fragments");
978        }
979        mRetainInstance = retain;
980    }
981
982    final public boolean getRetainInstance() {
983        return mRetainInstance;
984    }
985
986    /**
987     * Report that this fragment would like to participate in populating
988     * the options menu by receiving a call to {@link #onCreateOptionsMenu}
989     * and related methods.
990     *
991     * @param hasMenu If true, the fragment has menu items to contribute.
992     */
993    public void setHasOptionsMenu(boolean hasMenu) {
994        if (mHasMenu != hasMenu) {
995            mHasMenu = hasMenu;
996            if (isAdded() && !isHidden()) {
997                mFragmentManager.invalidateOptionsMenu();
998            }
999        }
1000    }
1001
1002    /**
1003     * Set a hint for whether this fragment's menu should be visible.  This
1004     * is useful if you know that a fragment has been placed in your view
1005     * hierarchy so that the user can not currently seen it, so any menu items
1006     * it has should also not be shown.
1007     *
1008     * @param menuVisible The default is true, meaning the fragment's menu will
1009     * be shown as usual.  If false, the user will not see the menu.
1010     */
1011    public void setMenuVisibility(boolean menuVisible) {
1012        if (mMenuVisible != menuVisible) {
1013            mMenuVisible = menuVisible;
1014            if (mHasMenu && isAdded() && !isHidden()) {
1015                mFragmentManager.invalidateOptionsMenu();
1016            }
1017        }
1018    }
1019
1020    /**
1021     * Set a hint to the system about whether this fragment's UI is currently visible
1022     * to the user. This hint defaults to true and is persistent across fragment instance
1023     * state save and restore.
1024     *
1025     * <p>An app may set this to false to indicate that the fragment's UI is
1026     * scrolled out of visibility or is otherwise not directly visible to the user.
1027     * This may be used by the system to prioritize operations such as fragment lifecycle updates
1028     * or loader ordering behavior.</p>
1029     *
1030     * @param isVisibleToUser true if this fragment's UI is currently visible to the user (default),
1031     *                        false if it is not.
1032     */
1033    public void setUserVisibleHint(boolean isVisibleToUser) {
1034        if (!mUserVisibleHint && isVisibleToUser && mState < STARTED) {
1035            mFragmentManager.performPendingDeferredStart(this);
1036        }
1037        mUserVisibleHint = isVisibleToUser;
1038        mDeferStart = !isVisibleToUser;
1039    }
1040
1041    /**
1042     * @return The current value of the user-visible hint on this fragment.
1043     * @see #setUserVisibleHint(boolean)
1044     */
1045    public boolean getUserVisibleHint() {
1046        return mUserVisibleHint;
1047    }
1048
1049    /**
1050     * Return the LoaderManager for this fragment, creating it if needed.
1051     */
1052    public LoaderManager getLoaderManager() {
1053        if (mLoaderManager != null) {
1054            return mLoaderManager;
1055        }
1056        if (mHost == null) {
1057            throw new IllegalStateException("Fragment " + this + " not attached to Activity");
1058        }
1059        mCheckedForLoaderManager = true;
1060        mLoaderManager = mHost.getLoaderManager(mWho, mLoadersStarted, true);
1061        return mLoaderManager;
1062    }
1063
1064    /**
1065     * Call {@link Activity#startActivity(Intent)} from the fragment's
1066     * containing Activity.
1067     *
1068     * @param intent The intent to start.
1069     */
1070    public void startActivity(Intent intent) {
1071        startActivity(intent, null);
1072    }
1073
1074    /**
1075     * Call {@link Activity#startActivity(Intent, Bundle)} from the fragment's
1076     * containing Activity.
1077     *
1078     * @param intent The intent to start.
1079     * @param options Additional options for how the Activity should be started.
1080     * See {@link android.content.Context#startActivity(Intent, Bundle)
1081     * Context.startActivity(Intent, Bundle)} for more details.
1082     */
1083    public void startActivity(Intent intent, Bundle options) {
1084        if (mHost == null) {
1085            throw new IllegalStateException("Fragment " + this + " not attached to Activity");
1086        }
1087        if (options != null) {
1088            mHost.onStartActivityFromFragment(this, intent, -1, options);
1089        } else {
1090            // Note we want to go through this call for compatibility with
1091            // applications that may have overridden the method.
1092            mHost.onStartActivityFromFragment(this, intent, -1, null /*options*/);
1093        }
1094    }
1095
1096    /**
1097     * Call {@link Activity#startActivityForResult(Intent, int)} from the fragment's
1098     * containing Activity.
1099     */
1100    public void startActivityForResult(Intent intent, int requestCode) {
1101        startActivityForResult(intent, requestCode, null);
1102    }
1103
1104    /**
1105     * Call {@link Activity#startActivityForResult(Intent, int, Bundle)} from the fragment's
1106     * containing Activity.
1107     */
1108    public void startActivityForResult(Intent intent, int requestCode, Bundle options) {
1109        if (mHost == null) {
1110            throw new IllegalStateException("Fragment " + this + " not attached to Activity");
1111        }
1112        mHost.onStartActivityFromFragment(this, intent, requestCode, options);
1113    }
1114
1115    /**
1116     * Receive the result from a previous call to
1117     * {@link #startActivityForResult(Intent, int)}.  This follows the
1118     * related Activity API as described there in
1119     * {@link Activity#onActivityResult(int, int, Intent)}.
1120     *
1121     * @param requestCode The integer request code originally supplied to
1122     *                    startActivityForResult(), allowing you to identify who this
1123     *                    result came from.
1124     * @param resultCode The integer result code returned by the child activity
1125     *                   through its setResult().
1126     * @param data An Intent, which can return result data to the caller
1127     *               (various data can be attached to Intent "extras").
1128     */
1129    public void onActivityResult(int requestCode, int resultCode, Intent data) {
1130    }
1131
1132    /**
1133     * Requests permissions to be granted to this application. These permissions
1134     * must be requested in your manifest, they should not be granted to your app,
1135     * and they should have protection level {@link android.content.pm.PermissionInfo
1136     * #PROTECTION_DANGEROUS dangerous}, regardless whether they are declared by
1137     * the platform or a third-party app.
1138     * <p>
1139     * Normal permissions {@link android.content.pm.PermissionInfo#PROTECTION_NORMAL}
1140     * are granted at install time if requested in the manifest. Signature permissions
1141     * {@link android.content.pm.PermissionInfo#PROTECTION_SIGNATURE} are granted at
1142     * install time if requested in the manifest and the signature of your app matches
1143     * the signature of the app declaring the permissions.
1144     * </p>
1145     * <p>
1146     * If your app does not have the requested permissions the user will be presented
1147     * with UI for accepting them. After the user has accepted or rejected the
1148     * requested permissions you will receive a callback on {@link
1149     * #onRequestPermissionsResult(int, String[], int[])} reporting whether the
1150     * permissions were granted or not.
1151     * </p>
1152     * <p>
1153     * Note that requesting a permission does not guarantee it will be granted and
1154     * your app should be able to run without having this permission.
1155     * </p>
1156     * <p>
1157     * This method may start an activity allowing the user to choose which permissions
1158     * to grant and which to reject. Hence, you should be prepared that your activity
1159     * may be paused and resumed. Further, granting some permissions may require
1160     * a restart of you application. In such a case, the system will recreate the
1161     * activity stack before delivering the result to {@link
1162     * #onRequestPermissionsResult(int, String[], int[])}.
1163     * </p>
1164     * <p>
1165     * When checking whether you have a permission you should use {@link
1166     * android.content.Context#checkSelfPermission(String)}.
1167     * </p>
1168     * <p>
1169     * A sample permissions request looks like this:
1170     * </p>
1171     * <code><pre><p>
1172     * private void showContacts() {
1173     *     if (getActivity().checkSelfPermission(Manifest.permission.READ_CONTACTS)
1174     *             != PackageManager.PERMISSION_GRANTED) {
1175     *         requestPermissions(new String[]{Manifest.permission.READ_CONTACTS},
1176     *                 PERMISSIONS_REQUEST_READ_CONTACTS);
1177     *     } else {
1178     *         doShowContacts();
1179     *     }
1180     * }
1181     *
1182     * {@literal @}Override
1183     * public void onRequestPermissionsResult(int requestCode, String[] permissions,
1184     *         int[] grantResults) {
1185     *     if (requestCode == PERMISSIONS_REQUEST_READ_CONTACTS
1186     *             && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
1187     *         doShowContacts();
1188     *     }
1189     * }
1190     * </code></pre></p>
1191     *
1192     * @param permissions The requested permissions.
1193     * @param requestCode Application specific request code to match with a result
1194     *    reported to {@link #onRequestPermissionsResult(int, String[], int[])}.
1195     *
1196     * @see #onRequestPermissionsResult(int, String[], int[])
1197     * @see android.content.Context#checkSelfPermission(String)
1198     */
1199    public final void requestPermissions(@NonNull String[] permissions, int requestCode) {
1200        if (mHost == null) {
1201            throw new IllegalStateException("Fragment " + this + " not attached to Activity");
1202        }
1203        Intent intent =
1204                mHost.getContext().getPackageManager().buildRequestPermissionsIntent(permissions);
1205        mHost.onStartActivityFromFragment(this, intent, requestCode, null);
1206    }
1207
1208    /**
1209     * Callback for the result from requesting permissions. This method
1210     * is invoked for every call on {@link #requestPermissions(String[], int)}.
1211     *
1212     * @param requestCode The request code passed in {@link #requestPermissions(String[], int)}.
1213     * @param permissions The requested permissions. Never null.
1214     * @param grantResults The grant results for the corresponding permissions
1215     *     which is either {@link android.content.pm.PackageManager#PERMISSION_GRANTED}
1216     *     or {@link android.content.pm.PackageManager#PERMISSION_DENIED}. Never null.
1217     *
1218     * @see #requestPermissions(String[], int)
1219     */
1220    public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
1221            @NonNull int[] grantResults) {
1222        /* callback - do nothing */
1223    }
1224
1225    /**
1226     * @hide Hack so that DialogFragment can make its Dialog before creating
1227     * its views, and the view construction can use the dialog's context for
1228     * inflation.  Maybe this should become a public API. Note sure.
1229     */
1230    public LayoutInflater getLayoutInflater(Bundle savedInstanceState) {
1231        final LayoutInflater result = mHost.onGetLayoutInflater();
1232        if (mHost.onUseFragmentManagerInflaterFactory()) {
1233            getChildFragmentManager(); // Init if needed; use raw implementation below.
1234            result.setPrivateFactory(mChildFragmentManager.getLayoutInflaterFactory());
1235        }
1236        return result;
1237    }
1238
1239    /**
1240     * @deprecated Use {@link #onInflate(Context, AttributeSet, Bundle)} instead.
1241     */
1242    @Deprecated
1243    public void onInflate(AttributeSet attrs, Bundle savedInstanceState) {
1244        mCalled = true;
1245    }
1246
1247    /**
1248     * Called when a fragment is being created as part of a view layout
1249     * inflation, typically from setting the content view of an activity.  This
1250     * may be called immediately after the fragment is created from a <fragment>
1251     * tag in a layout file.  Note this is <em>before</em> the fragment's
1252     * {@link #onAttach(Activity)} has been called; all you should do here is
1253     * parse the attributes and save them away.
1254     *
1255     * <p>This is called every time the fragment is inflated, even if it is
1256     * being inflated into a new instance with saved state.  It typically makes
1257     * sense to re-parse the parameters each time, to allow them to change with
1258     * different configurations.</p>
1259     *
1260     * <p>Here is a typical implementation of a fragment that can take parameters
1261     * both through attributes supplied here as well from {@link #getArguments()}:</p>
1262     *
1263     * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/FragmentArguments.java
1264     *      fragment}
1265     *
1266     * <p>Note that parsing the XML attributes uses a "styleable" resource.  The
1267     * declaration for the styleable used here is:</p>
1268     *
1269     * {@sample development/samples/ApiDemos/res/values/attrs.xml fragment_arguments}
1270     *
1271     * <p>The fragment can then be declared within its activity's content layout
1272     * through a tag like this:</p>
1273     *
1274     * {@sample development/samples/ApiDemos/res/layout/fragment_arguments.xml from_attributes}
1275     *
1276     * <p>This fragment can also be created dynamically from arguments given
1277     * at runtime in the arguments Bundle; here is an example of doing so at
1278     * creation of the containing activity:</p>
1279     *
1280     * {@sample development/samples/ApiDemos/src/com/example/android/apis/app/FragmentArguments.java
1281     *      create}
1282     *
1283     * @param context The Context that is inflating this fragment.
1284     * @param attrs The attributes at the tag where the fragment is
1285     * being created.
1286     * @param savedInstanceState If the fragment is being re-created from
1287     * a previous saved state, this is the state.
1288     */
1289    public void onInflate(Context context, AttributeSet attrs, Bundle savedInstanceState) {
1290        onInflate(attrs, savedInstanceState);
1291        mCalled = true;
1292
1293        TypedArray a = context.obtainStyledAttributes(attrs,
1294                com.android.internal.R.styleable.Fragment);
1295        mEnterTransition = loadTransition(context, a, mEnterTransition, null,
1296                com.android.internal.R.styleable.Fragment_fragmentEnterTransition);
1297        mReturnTransition = loadTransition(context, a, mReturnTransition, USE_DEFAULT_TRANSITION,
1298                com.android.internal.R.styleable.Fragment_fragmentReturnTransition);
1299        mExitTransition = loadTransition(context, a, mExitTransition, null,
1300                com.android.internal.R.styleable.Fragment_fragmentExitTransition);
1301        mReenterTransition = loadTransition(context, a, mReenterTransition, USE_DEFAULT_TRANSITION,
1302                com.android.internal.R.styleable.Fragment_fragmentReenterTransition);
1303        mSharedElementEnterTransition = loadTransition(context, a, mSharedElementEnterTransition,
1304                null, com.android.internal.R.styleable.Fragment_fragmentSharedElementEnterTransition);
1305        mSharedElementReturnTransition = loadTransition(context, a, mSharedElementReturnTransition,
1306                USE_DEFAULT_TRANSITION,
1307                com.android.internal.R.styleable.Fragment_fragmentSharedElementReturnTransition);
1308        if (mAllowEnterTransitionOverlap == null) {
1309            mAllowEnterTransitionOverlap = a.getBoolean(
1310                    com.android.internal.R.styleable.Fragment_fragmentAllowEnterTransitionOverlap, true);
1311        }
1312        if (mAllowReturnTransitionOverlap == null) {
1313            mAllowReturnTransitionOverlap = a.getBoolean(
1314                    com.android.internal.R.styleable.Fragment_fragmentAllowReturnTransitionOverlap, true);
1315        }
1316        a.recycle();
1317    }
1318
1319    /**
1320     * @deprecated Use {@link #onInflate(Context, AttributeSet, Bundle)} instead.
1321     */
1322    @Deprecated
1323    public void onInflate(Activity activity, AttributeSet attrs, Bundle savedInstanceState) {
1324        mCalled = true;
1325    }
1326
1327    /**
1328     * Called when a fragment is first attached to its context.
1329     * {@link #onCreate(Bundle)} will be called after this.
1330     */
1331    public void onAttach(Context context) {
1332        mCalled = true;
1333        final Activity hostActivity = mHost == null ? null : mHost.getActivity();
1334        if (hostActivity != null) {
1335            mCalled = false;
1336            onAttach(hostActivity);
1337        }
1338    }
1339
1340    /**
1341     * @deprecated Use {@link #onAttach(Context)} instead.
1342     */
1343    @Deprecated
1344    public void onAttach(Activity activity) {
1345        mCalled = true;
1346    }
1347
1348    /**
1349     * Called when a fragment loads an animation.
1350     */
1351    public Animator onCreateAnimator(int transit, boolean enter, int nextAnim) {
1352        return null;
1353    }
1354
1355    /**
1356     * Called to do initial creation of a fragment.  This is called after
1357     * {@link #onAttach(Activity)} and before
1358     * {@link #onCreateView(LayoutInflater, ViewGroup, Bundle)}.
1359     *
1360     * <p>Note that this can be called while the fragment's activity is
1361     * still in the process of being created.  As such, you can not rely
1362     * on things like the activity's content view hierarchy being initialized
1363     * at this point.  If you want to do work once the activity itself is
1364     * created, see {@link #onActivityCreated(Bundle)}.
1365     *
1366     * @param savedInstanceState If the fragment is being re-created from
1367     * a previous saved state, this is the state.
1368     */
1369    public void onCreate(@Nullable Bundle savedInstanceState) {
1370        mCalled = true;
1371    }
1372
1373    /**
1374     * Called to have the fragment instantiate its user interface view.
1375     * This is optional, and non-graphical fragments can return null (which
1376     * is the default implementation).  This will be called between
1377     * {@link #onCreate(Bundle)} and {@link #onActivityCreated(Bundle)}.
1378     *
1379     * <p>If you return a View from here, you will later be called in
1380     * {@link #onDestroyView} when the view is being released.
1381     *
1382     * @param inflater The LayoutInflater object that can be used to inflate
1383     * any views in the fragment,
1384     * @param container If non-null, this is the parent view that the fragment's
1385     * UI should be attached to.  The fragment should not add the view itself,
1386     * but this can be used to generate the LayoutParams of the view.
1387     * @param savedInstanceState If non-null, this fragment is being re-constructed
1388     * from a previous saved state as given here.
1389     *
1390     * @return Return the View for the fragment's UI, or null.
1391     */
1392    @Nullable
1393    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
1394            Bundle savedInstanceState) {
1395        return null;
1396    }
1397
1398    /**
1399     * Called immediately after {@link #onCreateView(LayoutInflater, ViewGroup, Bundle)}
1400     * has returned, but before any saved state has been restored in to the view.
1401     * This gives subclasses a chance to initialize themselves once
1402     * they know their view hierarchy has been completely created.  The fragment's
1403     * view hierarchy is not however attached to its parent at this point.
1404     * @param view The View returned by {@link #onCreateView(LayoutInflater, ViewGroup, Bundle)}.
1405     * @param savedInstanceState If non-null, this fragment is being re-constructed
1406     * from a previous saved state as given here.
1407     */
1408    public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
1409    }
1410
1411    /**
1412     * Get the root view for the fragment's layout (the one returned by {@link #onCreateView}),
1413     * if provided.
1414     *
1415     * @return The fragment's root view, or null if it has no layout.
1416     */
1417    @Nullable
1418    public View getView() {
1419        return mView;
1420    }
1421
1422    /**
1423     * Called when the fragment's activity has been created and this
1424     * fragment's view hierarchy instantiated.  It can be used to do final
1425     * initialization once these pieces are in place, such as retrieving
1426     * views or restoring state.  It is also useful for fragments that use
1427     * {@link #setRetainInstance(boolean)} to retain their instance,
1428     * as this callback tells the fragment when it is fully associated with
1429     * the new activity instance.  This is called after {@link #onCreateView}
1430     * and before {@link #onViewStateRestored(Bundle)}.
1431     *
1432     * @param savedInstanceState If the fragment is being re-created from
1433     * a previous saved state, this is the state.
1434     */
1435    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
1436        mCalled = true;
1437    }
1438
1439    /**
1440     * Called when all saved state has been restored into the view hierarchy
1441     * of the fragment.  This can be used to do initialization based on saved
1442     * state that you are letting the view hierarchy track itself, such as
1443     * whether check box widgets are currently checked.  This is called
1444     * after {@link #onActivityCreated(Bundle)} and before
1445     * {@link #onStart()}.
1446     *
1447     * @param savedInstanceState If the fragment is being re-created from
1448     * a previous saved state, this is the state.
1449     */
1450    public void onViewStateRestored(Bundle savedInstanceState) {
1451        mCalled = true;
1452    }
1453
1454    /**
1455     * Called when the Fragment is visible to the user.  This is generally
1456     * tied to {@link Activity#onStart() Activity.onStart} of the containing
1457     * Activity's lifecycle.
1458     */
1459    public void onStart() {
1460        mCalled = true;
1461
1462        if (!mLoadersStarted) {
1463            mLoadersStarted = true;
1464            if (!mCheckedForLoaderManager) {
1465                mCheckedForLoaderManager = true;
1466                mLoaderManager = mHost.getLoaderManager(mWho, mLoadersStarted, false);
1467            }
1468            if (mLoaderManager != null) {
1469                mLoaderManager.doStart();
1470            }
1471        }
1472    }
1473
1474    /**
1475     * Called when the fragment is visible to the user and actively running.
1476     * This is generally
1477     * tied to {@link Activity#onResume() Activity.onResume} of the containing
1478     * Activity's lifecycle.
1479     */
1480    public void onResume() {
1481        mCalled = true;
1482    }
1483
1484    /**
1485     * Called to ask the fragment to save its current dynamic state, so it
1486     * can later be reconstructed in a new instance of its process is
1487     * restarted.  If a new instance of the fragment later needs to be
1488     * created, the data you place in the Bundle here will be available
1489     * in the Bundle given to {@link #onCreate(Bundle)},
1490     * {@link #onCreateView(LayoutInflater, ViewGroup, Bundle)}, and
1491     * {@link #onActivityCreated(Bundle)}.
1492     *
1493     * <p>This corresponds to {@link Activity#onSaveInstanceState(Bundle)
1494     * Activity.onSaveInstanceState(Bundle)} and most of the discussion there
1495     * applies here as well.  Note however: <em>this method may be called
1496     * at any time before {@link #onDestroy()}</em>.  There are many situations
1497     * where a fragment may be mostly torn down (such as when placed on the
1498     * back stack with no UI showing), but its state will not be saved until
1499     * its owning activity actually needs to save its state.
1500     *
1501     * @param outState Bundle in which to place your saved state.
1502     */
1503    public void onSaveInstanceState(Bundle outState) {
1504    }
1505
1506    public void onConfigurationChanged(Configuration newConfig) {
1507        mCalled = true;
1508    }
1509
1510    /**
1511     * Called when the Fragment is no longer resumed.  This is generally
1512     * tied to {@link Activity#onPause() Activity.onPause} of the containing
1513     * Activity's lifecycle.
1514     */
1515    public void onPause() {
1516        mCalled = true;
1517    }
1518
1519    /**
1520     * Called when the Fragment is no longer started.  This is generally
1521     * tied to {@link Activity#onStop() Activity.onStop} of the containing
1522     * Activity's lifecycle.
1523     */
1524    public void onStop() {
1525        mCalled = true;
1526    }
1527
1528    public void onLowMemory() {
1529        mCalled = true;
1530    }
1531
1532    public void onTrimMemory(int level) {
1533        mCalled = true;
1534    }
1535
1536    /**
1537     * Called when the view previously created by {@link #onCreateView} has
1538     * been detached from the fragment.  The next time the fragment needs
1539     * to be displayed, a new view will be created.  This is called
1540     * after {@link #onStop()} and before {@link #onDestroy()}.  It is called
1541     * <em>regardless</em> of whether {@link #onCreateView} returned a
1542     * non-null view.  Internally it is called after the view's state has
1543     * been saved but before it has been removed from its parent.
1544     */
1545    public void onDestroyView() {
1546        mCalled = true;
1547    }
1548
1549    /**
1550     * Called when the fragment is no longer in use.  This is called
1551     * after {@link #onStop()} and before {@link #onDetach()}.
1552     */
1553    public void onDestroy() {
1554        mCalled = true;
1555        //Log.v("foo", "onDestroy: mCheckedForLoaderManager=" + mCheckedForLoaderManager
1556        //        + " mLoaderManager=" + mLoaderManager);
1557        if (!mCheckedForLoaderManager) {
1558            mCheckedForLoaderManager = true;
1559            mLoaderManager = mHost.getLoaderManager(mWho, mLoadersStarted, false);
1560        }
1561        if (mLoaderManager != null) {
1562            mLoaderManager.doDestroy();
1563        }
1564    }
1565
1566    /**
1567     * Called by the fragment manager once this fragment has been removed,
1568     * so that we don't have any left-over state if the application decides
1569     * to re-use the instance.  This only clears state that the framework
1570     * internally manages, not things the application sets.
1571     */
1572    void initState() {
1573        mIndex = -1;
1574        mWho = null;
1575        mAdded = false;
1576        mRemoving = false;
1577        mResumed = false;
1578        mFromLayout = false;
1579        mInLayout = false;
1580        mRestored = false;
1581        mBackStackNesting = 0;
1582        mFragmentManager = null;
1583        mChildFragmentManager = null;
1584        mHost = null;
1585        mFragmentId = 0;
1586        mContainerId = 0;
1587        mTag = null;
1588        mHidden = false;
1589        mDetached = false;
1590        mRetaining = false;
1591        mLoaderManager = null;
1592        mLoadersStarted = false;
1593        mCheckedForLoaderManager = false;
1594    }
1595
1596    /**
1597     * Called when the fragment is no longer attached to its activity.  This
1598     * is called after {@link #onDestroy()}.
1599     */
1600    public void onDetach() {
1601        mCalled = true;
1602    }
1603
1604    /**
1605     * Initialize the contents of the Activity's standard options menu.  You
1606     * should place your menu items in to <var>menu</var>.  For this method
1607     * to be called, you must have first called {@link #setHasOptionsMenu}.  See
1608     * {@link Activity#onCreateOptionsMenu(Menu) Activity.onCreateOptionsMenu}
1609     * for more information.
1610     *
1611     * @param menu The options menu in which you place your items.
1612     *
1613     * @see #setHasOptionsMenu
1614     * @see #onPrepareOptionsMenu
1615     * @see #onOptionsItemSelected
1616     */
1617    public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
1618    }
1619
1620    /**
1621     * Prepare the Screen's standard options menu to be displayed.  This is
1622     * called right before the menu is shown, every time it is shown.  You can
1623     * use this method to efficiently enable/disable items or otherwise
1624     * dynamically modify the contents.  See
1625     * {@link Activity#onPrepareOptionsMenu(Menu) Activity.onPrepareOptionsMenu}
1626     * for more information.
1627     *
1628     * @param menu The options menu as last shown or first initialized by
1629     *             onCreateOptionsMenu().
1630     *
1631     * @see #setHasOptionsMenu
1632     * @see #onCreateOptionsMenu
1633     */
1634    public void onPrepareOptionsMenu(Menu menu) {
1635    }
1636
1637    /**
1638     * Called when this fragment's option menu items are no longer being
1639     * included in the overall options menu.  Receiving this call means that
1640     * the menu needed to be rebuilt, but this fragment's items were not
1641     * included in the newly built menu (its {@link #onCreateOptionsMenu(Menu, MenuInflater)}
1642     * was not called).
1643     */
1644    public void onDestroyOptionsMenu() {
1645    }
1646
1647    /**
1648     * This hook is called whenever an item in your options menu is selected.
1649     * The default implementation simply returns false to have the normal
1650     * processing happen (calling the item's Runnable or sending a message to
1651     * its Handler as appropriate).  You can use this method for any items
1652     * for which you would like to do processing without those other
1653     * facilities.
1654     *
1655     * <p>Derived classes should call through to the base class for it to
1656     * perform the default menu handling.
1657     *
1658     * @param item The menu item that was selected.
1659     *
1660     * @return boolean Return false to allow normal menu processing to
1661     *         proceed, true to consume it here.
1662     *
1663     * @see #onCreateOptionsMenu
1664     */
1665    public boolean onOptionsItemSelected(MenuItem item) {
1666        return false;
1667    }
1668
1669    /**
1670     * This hook is called whenever the options menu is being closed (either by the user canceling
1671     * the menu with the back/menu button, or when an item is selected).
1672     *
1673     * @param menu The options menu as last shown or first initialized by
1674     *             onCreateOptionsMenu().
1675     */
1676    public void onOptionsMenuClosed(Menu menu) {
1677    }
1678
1679    /**
1680     * Called when a context menu for the {@code view} is about to be shown.
1681     * Unlike {@link #onCreateOptionsMenu}, this will be called every
1682     * time the context menu is about to be shown and should be populated for
1683     * the view (or item inside the view for {@link AdapterView} subclasses,
1684     * this can be found in the {@code menuInfo})).
1685     * <p>
1686     * Use {@link #onContextItemSelected(android.view.MenuItem)} to know when an
1687     * item has been selected.
1688     * <p>
1689     * The default implementation calls up to
1690     * {@link Activity#onCreateContextMenu Activity.onCreateContextMenu}, though
1691     * you can not call this implementation if you don't want that behavior.
1692     * <p>
1693     * It is not safe to hold onto the context menu after this method returns.
1694     * {@inheritDoc}
1695     */
1696    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
1697        getActivity().onCreateContextMenu(menu, v, menuInfo);
1698    }
1699
1700    /**
1701     * Registers a context menu to be shown for the given view (multiple views
1702     * can show the context menu). This method will set the
1703     * {@link OnCreateContextMenuListener} on the view to this fragment, so
1704     * {@link #onCreateContextMenu(ContextMenu, View, ContextMenuInfo)} will be
1705     * called when it is time to show the context menu.
1706     *
1707     * @see #unregisterForContextMenu(View)
1708     * @param view The view that should show a context menu.
1709     */
1710    public void registerForContextMenu(View view) {
1711        view.setOnCreateContextMenuListener(this);
1712    }
1713
1714    /**
1715     * Prevents a context menu to be shown for the given view. This method will
1716     * remove the {@link OnCreateContextMenuListener} on the view.
1717     *
1718     * @see #registerForContextMenu(View)
1719     * @param view The view that should stop showing a context menu.
1720     */
1721    public void unregisterForContextMenu(View view) {
1722        view.setOnCreateContextMenuListener(null);
1723    }
1724
1725    /**
1726     * This hook is called whenever an item in a context menu is selected. The
1727     * default implementation simply returns false to have the normal processing
1728     * happen (calling the item's Runnable or sending a message to its Handler
1729     * as appropriate). You can use this method for any items for which you
1730     * would like to do processing without those other facilities.
1731     * <p>
1732     * Use {@link MenuItem#getMenuInfo()} to get extra information set by the
1733     * View that added this menu item.
1734     * <p>
1735     * Derived classes should call through to the base class for it to perform
1736     * the default menu handling.
1737     *
1738     * @param item The context menu item that was selected.
1739     * @return boolean Return false to allow normal context menu processing to
1740     *         proceed, true to consume it here.
1741     */
1742    public boolean onContextItemSelected(MenuItem item) {
1743        return false;
1744    }
1745
1746    /**
1747     * When custom transitions are used with Fragments, the enter transition callback
1748     * is called when this Fragment is attached or detached when not popping the back stack.
1749     *
1750     * @param callback Used to manipulate the shared element transitions on this Fragment
1751     *                 when added not as a pop from the back stack.
1752     */
1753    public void setEnterSharedElementCallback(SharedElementCallback callback) {
1754        if (callback == null) {
1755            callback = SharedElementCallback.NULL_CALLBACK;
1756        }
1757        mEnterTransitionCallback = callback;
1758    }
1759
1760    /**
1761     * @hide
1762     */
1763    public void setEnterSharedElementTransitionCallback(SharedElementCallback callback) {
1764        setEnterSharedElementCallback(callback);
1765    }
1766
1767    /**
1768     * When custom transitions are used with Fragments, the exit transition callback
1769     * is called when this Fragment is attached or detached when popping the back stack.
1770     *
1771     * @param callback Used to manipulate the shared element transitions on this Fragment
1772     *                 when added as a pop from the back stack.
1773     */
1774    public void setExitSharedElementCallback(SharedElementCallback callback) {
1775        if (callback == null) {
1776            callback = SharedElementCallback.NULL_CALLBACK;
1777        }
1778        mExitTransitionCallback = callback;
1779    }
1780
1781    /**
1782     * @hide
1783     */
1784    public void setExitSharedElementTransitionCallback(SharedElementCallback callback) {
1785        setExitSharedElementCallback(callback);
1786    }
1787
1788    /**
1789     * Sets the Transition that will be used to move Views into the initial scene. The entering
1790     * Views will be those that are regular Views or ViewGroups that have
1791     * {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1792     * {@link android.transition.Visibility} as entering is governed by changing visibility from
1793     * {@link View#INVISIBLE} to {@link View#VISIBLE}. If <code>transition</code> is null,
1794     * entering Views will remain unaffected.
1795     *
1796     * @param transition The Transition to use to move Views into the initial Scene.
1797     * @attr ref android.R.styleable#Fragment_fragmentEnterTransition
1798     */
1799    public void setEnterTransition(Transition transition) {
1800        mEnterTransition = transition;
1801    }
1802
1803    /**
1804     * Returns the Transition that will be used to move Views into the initial scene. The entering
1805     * Views will be those that are regular Views or ViewGroups that have
1806     * {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1807     * {@link android.transition.Visibility} as entering is governed by changing visibility from
1808     * {@link View#INVISIBLE} to {@link View#VISIBLE}.
1809     *
1810     * @return the Transition to use to move Views into the initial Scene.
1811     * @attr ref android.R.styleable#Fragment_fragmentEnterTransition
1812     */
1813    public Transition getEnterTransition() {
1814        return mEnterTransition;
1815    }
1816
1817    /**
1818     * Sets the Transition that will be used to move Views out of the scene when the Fragment is
1819     * preparing to be removed, hidden, or detached because of popping the back stack. The exiting
1820     * Views will be those that are regular Views or ViewGroups that have
1821     * {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1822     * {@link android.transition.Visibility} as entering is governed by changing visibility from
1823     * {@link View#VISIBLE} to {@link View#INVISIBLE}. If <code>transition</code> is null,
1824     * entering Views will remain unaffected. If nothing is set, the default will be to
1825     * use the same value as set in {@link #setEnterTransition(android.transition.Transition)}.
1826     *
1827     * @param transition The Transition to use to move Views out of the Scene when the Fragment
1828     *                   is preparing to close.
1829     * @attr ref android.R.styleable#Fragment_fragmentExitTransition
1830     */
1831    public void setReturnTransition(Transition transition) {
1832        mReturnTransition = transition;
1833    }
1834
1835    /**
1836     * Returns the Transition that will be used to move Views out of the scene when the Fragment is
1837     * preparing to be removed, hidden, or detached because of popping the back stack. The exiting
1838     * Views will be those that are regular Views or ViewGroups that have
1839     * {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1840     * {@link android.transition.Visibility} as entering is governed by changing visibility from
1841     * {@link View#VISIBLE} to {@link View#INVISIBLE}. If <code>transition</code> is null,
1842     * entering Views will remain unaffected.
1843     *
1844     * @return the Transition to use to move Views out of the Scene when the Fragment
1845     *         is preparing to close.
1846     * @attr ref android.R.styleable#Fragment_fragmentExitTransition
1847     */
1848    public Transition getReturnTransition() {
1849        return mReturnTransition == USE_DEFAULT_TRANSITION ? getEnterTransition()
1850                : mReturnTransition;
1851    }
1852
1853    /**
1854     * Sets the Transition that will be used to move Views out of the scene when the
1855     * fragment is removed, hidden, or detached when not popping the back stack.
1856     * The exiting Views will be those that are regular Views or ViewGroups that
1857     * have {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1858     * {@link android.transition.Visibility} as exiting is governed by changing visibility
1859     * from {@link View#VISIBLE} to {@link View#INVISIBLE}. If transition is null, the views will
1860     * remain unaffected.
1861     *
1862     * @param transition The Transition to use to move Views out of the Scene when the Fragment
1863     *                   is being closed not due to popping the back stack.
1864     * @attr ref android.R.styleable#Fragment_fragmentExitTransition
1865     */
1866    public void setExitTransition(Transition transition) {
1867        mExitTransition = transition;
1868    }
1869
1870    /**
1871     * Returns the Transition that will be used to move Views out of the scene when the
1872     * fragment is removed, hidden, or detached when not popping the back stack.
1873     * The exiting Views will be those that are regular Views or ViewGroups that
1874     * have {@link ViewGroup#isTransitionGroup} return true. Typical Transitions will extend
1875     * {@link android.transition.Visibility} as exiting is governed by changing visibility
1876     * from {@link View#VISIBLE} to {@link View#INVISIBLE}. If transition is null, the views will
1877     * remain unaffected.
1878     *
1879     * @return the Transition to use to move Views out of the Scene when the Fragment
1880     *         is being closed not due to popping the back stack.
1881     * @attr ref android.R.styleable#Fragment_fragmentExitTransition
1882     */
1883    public Transition getExitTransition() {
1884        return mExitTransition;
1885    }
1886
1887    /**
1888     * Sets the Transition that will be used to move Views in to the scene when returning due
1889     * to popping a back stack. The entering Views will be those that are regular Views
1890     * or ViewGroups that have {@link ViewGroup#isTransitionGroup} return true. Typical Transitions
1891     * will extend {@link android.transition.Visibility} as exiting is governed by changing
1892     * visibility from {@link View#VISIBLE} to {@link View#INVISIBLE}. If transition is null,
1893     * the views will remain unaffected. If nothing is set, the default will be to use the same
1894     * transition as {@link #setExitTransition(android.transition.Transition)}.
1895     *
1896     * @param transition The Transition to use to move Views into the scene when reentering from a
1897     *                   previously-started Activity.
1898     * @attr ref android.R.styleable#Fragment_fragmentReenterTransition
1899     */
1900    public void setReenterTransition(Transition transition) {
1901        mReenterTransition = transition;
1902    }
1903
1904    /**
1905     * Returns the Transition that will be used to move Views in to the scene when returning due
1906     * to popping a back stack. The entering Views will be those that are regular Views
1907     * or ViewGroups that have {@link ViewGroup#isTransitionGroup} return true. Typical Transitions
1908     * will extend {@link android.transition.Visibility} as exiting is governed by changing
1909     * visibility from {@link View#VISIBLE} to {@link View#INVISIBLE}. If transition is null,
1910     * the views will remain unaffected. If nothing is set, the default will be to use the same
1911     * transition as {@link #setExitTransition(android.transition.Transition)}.
1912     *
1913     * @return the Transition to use to move Views into the scene when reentering from a
1914     *                   previously-started Activity.
1915     * @attr ref android.R.styleable#Fragment_fragmentReenterTransition
1916     */
1917    public Transition getReenterTransition() {
1918        return mReenterTransition == USE_DEFAULT_TRANSITION ? getExitTransition()
1919                : mReenterTransition;
1920    }
1921
1922    /**
1923     * Sets the Transition that will be used for shared elements transferred into the content
1924     * Scene. Typical Transitions will affect size and location, such as
1925     * {@link android.transition.ChangeBounds}. A null
1926     * value will cause transferred shared elements to blink to the final position.
1927     *
1928     * @param transition The Transition to use for shared elements transferred into the content
1929     *                   Scene.
1930     * @attr ref android.R.styleable#Fragment_fragmentSharedElementEnterTransition
1931     */
1932    public void setSharedElementEnterTransition(Transition transition) {
1933        mSharedElementEnterTransition = transition;
1934    }
1935
1936    /**
1937     * Returns the Transition that will be used for shared elements transferred into the content
1938     * Scene. Typical Transitions will affect size and location, such as
1939     * {@link android.transition.ChangeBounds}. A null
1940     * value will cause transferred shared elements to blink to the final position.
1941     *
1942     * @return The Transition to use for shared elements transferred into the content
1943     *                   Scene.
1944     * @attr ref android.R.styleable#Fragment_fragmentSharedElementEnterTransition
1945     */
1946    public Transition getSharedElementEnterTransition() {
1947        return mSharedElementEnterTransition;
1948    }
1949
1950    /**
1951     * Sets the Transition that will be used for shared elements transferred back during a
1952     * pop of the back stack. This Transition acts in the leaving Fragment.
1953     * Typical Transitions will affect size and location, such as
1954     * {@link android.transition.ChangeBounds}. A null
1955     * value will cause transferred shared elements to blink to the final position.
1956     * If no value is set, the default will be to use the same value as
1957     * {@link #setSharedElementEnterTransition(android.transition.Transition)}.
1958     *
1959     * @param transition The Transition to use for shared elements transferred out of the content
1960     *                   Scene.
1961     * @attr ref android.R.styleable#Fragment_fragmentSharedElementReturnTransition
1962     */
1963    public void setSharedElementReturnTransition(Transition transition) {
1964        mSharedElementReturnTransition = transition;
1965    }
1966
1967    /**
1968     * Return the Transition that will be used for shared elements transferred back during a
1969     * pop of the back stack. This Transition acts in the leaving Fragment.
1970     * Typical Transitions will affect size and location, such as
1971     * {@link android.transition.ChangeBounds}. A null
1972     * value will cause transferred shared elements to blink to the final position.
1973     * If no value is set, the default will be to use the same value as
1974     * {@link #setSharedElementEnterTransition(android.transition.Transition)}.
1975     *
1976     * @return The Transition to use for shared elements transferred out of the content
1977     *                   Scene.
1978     * @attr ref android.R.styleable#Fragment_fragmentSharedElementReturnTransition
1979     */
1980    public Transition getSharedElementReturnTransition() {
1981        return mSharedElementReturnTransition == USE_DEFAULT_TRANSITION ?
1982                getSharedElementEnterTransition() : mSharedElementReturnTransition;
1983    }
1984
1985    /**
1986     * Sets whether the the exit transition and enter transition overlap or not.
1987     * When true, the enter transition will start as soon as possible. When false, the
1988     * enter transition will wait until the exit transition completes before starting.
1989     *
1990     * @param allow true to start the enter transition when possible or false to
1991     *              wait until the exiting transition completes.
1992     * @attr ref android.R.styleable#Fragment_fragmentAllowEnterTransitionOverlap
1993     */
1994    public void setAllowEnterTransitionOverlap(boolean allow) {
1995        mAllowEnterTransitionOverlap = allow;
1996    }
1997
1998    /**
1999     * Returns whether the the exit transition and enter transition overlap or not.
2000     * When true, the enter transition will start as soon as possible. When false, the
2001     * enter transition will wait until the exit transition completes before starting.
2002     *
2003     * @return true when the enter transition should start as soon as possible or false to
2004     * when it should wait until the exiting transition completes.
2005     * @attr ref android.R.styleable#Fragment_fragmentAllowEnterTransitionOverlap
2006     */
2007    public boolean getAllowEnterTransitionOverlap() {
2008        return (mAllowEnterTransitionOverlap == null) ? true : mAllowEnterTransitionOverlap;
2009    }
2010
2011    /**
2012     * Sets whether the the return transition and reenter transition overlap or not.
2013     * When true, the reenter transition will start as soon as possible. When false, the
2014     * reenter transition will wait until the return transition completes before starting.
2015     *
2016     * @param allow true to start the reenter transition when possible or false to wait until the
2017     *              return transition completes.
2018     * @attr ref android.R.styleable#Fragment_fragmentAllowReturnTransitionOverlap
2019     */
2020    public void setAllowReturnTransitionOverlap(boolean allow) {
2021        mAllowReturnTransitionOverlap = allow;
2022    }
2023
2024    /**
2025     * Returns whether the the return transition and reenter transition overlap or not.
2026     * When true, the reenter transition will start as soon as possible. When false, the
2027     * reenter transition will wait until the return transition completes before starting.
2028     *
2029     * @return true to start the reenter transition when possible or false to wait until the
2030     *         return transition completes.
2031     * @attr ref android.R.styleable#Fragment_fragmentAllowReturnTransitionOverlap
2032     */
2033    public boolean getAllowReturnTransitionOverlap() {
2034        return (mAllowReturnTransitionOverlap == null) ? true : mAllowReturnTransitionOverlap;
2035    }
2036
2037    /**
2038     * Print the Fragments's state into the given stream.
2039     *
2040     * @param prefix Text to print at the front of each line.
2041     * @param fd The raw file descriptor that the dump is being sent to.
2042     * @param writer The PrintWriter to which you should dump your state.  This will be
2043     * closed for you after you return.
2044     * @param args additional arguments to the dump request.
2045     */
2046    public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
2047        writer.print(prefix); writer.print("mFragmentId=#");
2048        writer.print(Integer.toHexString(mFragmentId));
2049        writer.print(" mContainerId=#");
2050        writer.print(Integer.toHexString(mContainerId));
2051        writer.print(" mTag="); writer.println(mTag);
2052        writer.print(prefix); writer.print("mState="); writer.print(mState);
2053        writer.print(" mIndex="); writer.print(mIndex);
2054        writer.print(" mWho="); writer.print(mWho);
2055        writer.print(" mBackStackNesting="); writer.println(mBackStackNesting);
2056        writer.print(prefix); writer.print("mAdded="); writer.print(mAdded);
2057        writer.print(" mRemoving="); writer.print(mRemoving);
2058        writer.print(" mResumed="); writer.print(mResumed);
2059        writer.print(" mFromLayout="); writer.print(mFromLayout);
2060        writer.print(" mInLayout="); writer.println(mInLayout);
2061        writer.print(prefix); writer.print("mHidden="); writer.print(mHidden);
2062        writer.print(" mDetached="); writer.print(mDetached);
2063        writer.print(" mMenuVisible="); writer.print(mMenuVisible);
2064        writer.print(" mHasMenu="); writer.println(mHasMenu);
2065        writer.print(prefix); writer.print("mRetainInstance="); writer.print(mRetainInstance);
2066        writer.print(" mRetaining="); writer.print(mRetaining);
2067        writer.print(" mUserVisibleHint="); writer.println(mUserVisibleHint);
2068        if (mFragmentManager != null) {
2069            writer.print(prefix); writer.print("mFragmentManager=");
2070            writer.println(mFragmentManager);
2071        }
2072        if (mHost != null) {
2073            writer.print(prefix); writer.print("mHost=");
2074            writer.println(mHost);
2075        }
2076        if (mParentFragment != null) {
2077            writer.print(prefix); writer.print("mParentFragment=");
2078            writer.println(mParentFragment);
2079        }
2080        if (mArguments != null) {
2081            writer.print(prefix); writer.print("mArguments="); writer.println(mArguments);
2082        }
2083        if (mSavedFragmentState != null) {
2084            writer.print(prefix); writer.print("mSavedFragmentState=");
2085            writer.println(mSavedFragmentState);
2086        }
2087        if (mSavedViewState != null) {
2088            writer.print(prefix); writer.print("mSavedViewState=");
2089            writer.println(mSavedViewState);
2090        }
2091        if (mTarget != null) {
2092            writer.print(prefix); writer.print("mTarget="); writer.print(mTarget);
2093            writer.print(" mTargetRequestCode=");
2094            writer.println(mTargetRequestCode);
2095        }
2096        if (mNextAnim != 0) {
2097            writer.print(prefix); writer.print("mNextAnim="); writer.println(mNextAnim);
2098        }
2099        if (mContainer != null) {
2100            writer.print(prefix); writer.print("mContainer="); writer.println(mContainer);
2101        }
2102        if (mView != null) {
2103            writer.print(prefix); writer.print("mView="); writer.println(mView);
2104        }
2105        if (mAnimatingAway != null) {
2106            writer.print(prefix); writer.print("mAnimatingAway="); writer.println(mAnimatingAway);
2107            writer.print(prefix); writer.print("mStateAfterAnimating=");
2108            writer.println(mStateAfterAnimating);
2109        }
2110        if (mLoaderManager != null) {
2111            writer.print(prefix); writer.println("Loader Manager:");
2112            mLoaderManager.dump(prefix + "  ", fd, writer, args);
2113        }
2114        if (mChildFragmentManager != null) {
2115            writer.print(prefix); writer.println("Child " + mChildFragmentManager + ":");
2116            mChildFragmentManager.dump(prefix + "  ", fd, writer, args);
2117        }
2118    }
2119
2120    Fragment findFragmentByWho(String who) {
2121        if (who.equals(mWho)) {
2122            return this;
2123        }
2124        if (mChildFragmentManager != null) {
2125            return mChildFragmentManager.findFragmentByWho(who);
2126        }
2127        return null;
2128    }
2129
2130    void instantiateChildFragmentManager() {
2131        mChildFragmentManager = new FragmentManagerImpl();
2132        mChildFragmentManager.attachController(mHost, new FragmentContainer() {
2133            @Override
2134            @Nullable
2135            public View onFindViewById(int id) {
2136                if (mView == null) {
2137                    throw new IllegalStateException("Fragment does not have a view");
2138                }
2139                return mView.findViewById(id);
2140            }
2141
2142            @Override
2143            public boolean onHasView() {
2144                return (mView != null);
2145            }
2146        }, this);
2147    }
2148
2149    void performCreate(Bundle savedInstanceState) {
2150        if (mChildFragmentManager != null) {
2151            mChildFragmentManager.noteStateNotSaved();
2152        }
2153        mCalled = false;
2154        onCreate(savedInstanceState);
2155        if (!mCalled) {
2156            throw new SuperNotCalledException("Fragment " + this
2157                    + " did not call through to super.onCreate()");
2158        }
2159        if (savedInstanceState != null) {
2160            Parcelable p = savedInstanceState.getParcelable(Activity.FRAGMENTS_TAG);
2161            if (p != null) {
2162                if (mChildFragmentManager == null) {
2163                    instantiateChildFragmentManager();
2164                }
2165                mChildFragmentManager.restoreAllState(p, null);
2166                mChildFragmentManager.dispatchCreate();
2167            }
2168        }
2169    }
2170
2171    View performCreateView(LayoutInflater inflater, ViewGroup container,
2172            Bundle savedInstanceState) {
2173        if (mChildFragmentManager != null) {
2174            mChildFragmentManager.noteStateNotSaved();
2175        }
2176        return onCreateView(inflater, container, savedInstanceState);
2177    }
2178
2179    void performActivityCreated(Bundle savedInstanceState) {
2180        if (mChildFragmentManager != null) {
2181            mChildFragmentManager.noteStateNotSaved();
2182        }
2183        mCalled = false;
2184        onActivityCreated(savedInstanceState);
2185        if (!mCalled) {
2186            throw new SuperNotCalledException("Fragment " + this
2187                    + " did not call through to super.onActivityCreated()");
2188        }
2189        if (mChildFragmentManager != null) {
2190            mChildFragmentManager.dispatchActivityCreated();
2191        }
2192    }
2193
2194    void performStart() {
2195        if (mChildFragmentManager != null) {
2196            mChildFragmentManager.noteStateNotSaved();
2197            mChildFragmentManager.execPendingActions();
2198        }
2199        mCalled = false;
2200        onStart();
2201        if (!mCalled) {
2202            throw new SuperNotCalledException("Fragment " + this
2203                    + " did not call through to super.onStart()");
2204        }
2205        if (mChildFragmentManager != null) {
2206            mChildFragmentManager.dispatchStart();
2207        }
2208        if (mLoaderManager != null) {
2209            mLoaderManager.doReportStart();
2210        }
2211    }
2212
2213    void performResume() {
2214        if (mChildFragmentManager != null) {
2215            mChildFragmentManager.noteStateNotSaved();
2216            mChildFragmentManager.execPendingActions();
2217        }
2218        mCalled = false;
2219        onResume();
2220        if (!mCalled) {
2221            throw new SuperNotCalledException("Fragment " + this
2222                    + " did not call through to super.onResume()");
2223        }
2224        if (mChildFragmentManager != null) {
2225            mChildFragmentManager.dispatchResume();
2226            mChildFragmentManager.execPendingActions();
2227        }
2228    }
2229
2230    void performConfigurationChanged(Configuration newConfig) {
2231        onConfigurationChanged(newConfig);
2232        if (mChildFragmentManager != null) {
2233            mChildFragmentManager.dispatchConfigurationChanged(newConfig);
2234        }
2235    }
2236
2237    void performLowMemory() {
2238        onLowMemory();
2239        if (mChildFragmentManager != null) {
2240            mChildFragmentManager.dispatchLowMemory();
2241        }
2242    }
2243
2244    void performTrimMemory(int level) {
2245        onTrimMemory(level);
2246        if (mChildFragmentManager != null) {
2247            mChildFragmentManager.dispatchTrimMemory(level);
2248        }
2249    }
2250
2251    boolean performCreateOptionsMenu(Menu menu, MenuInflater inflater) {
2252        boolean show = false;
2253        if (!mHidden) {
2254            if (mHasMenu && mMenuVisible) {
2255                show = true;
2256                onCreateOptionsMenu(menu, inflater);
2257            }
2258            if (mChildFragmentManager != null) {
2259                show |= mChildFragmentManager.dispatchCreateOptionsMenu(menu, inflater);
2260            }
2261        }
2262        return show;
2263    }
2264
2265    boolean performPrepareOptionsMenu(Menu menu) {
2266        boolean show = false;
2267        if (!mHidden) {
2268            if (mHasMenu && mMenuVisible) {
2269                show = true;
2270                onPrepareOptionsMenu(menu);
2271            }
2272            if (mChildFragmentManager != null) {
2273                show |= mChildFragmentManager.dispatchPrepareOptionsMenu(menu);
2274            }
2275        }
2276        return show;
2277    }
2278
2279    boolean performOptionsItemSelected(MenuItem item) {
2280        if (!mHidden) {
2281            if (mHasMenu && mMenuVisible) {
2282                if (onOptionsItemSelected(item)) {
2283                    return true;
2284                }
2285            }
2286            if (mChildFragmentManager != null) {
2287                if (mChildFragmentManager.dispatchOptionsItemSelected(item)) {
2288                    return true;
2289                }
2290            }
2291        }
2292        return false;
2293    }
2294
2295    boolean performContextItemSelected(MenuItem item) {
2296        if (!mHidden) {
2297            if (onContextItemSelected(item)) {
2298                return true;
2299            }
2300            if (mChildFragmentManager != null) {
2301                if (mChildFragmentManager.dispatchContextItemSelected(item)) {
2302                    return true;
2303                }
2304            }
2305        }
2306        return false;
2307    }
2308
2309    void performOptionsMenuClosed(Menu menu) {
2310        if (!mHidden) {
2311            if (mHasMenu && mMenuVisible) {
2312                onOptionsMenuClosed(menu);
2313            }
2314            if (mChildFragmentManager != null) {
2315                mChildFragmentManager.dispatchOptionsMenuClosed(menu);
2316            }
2317        }
2318    }
2319
2320    void performSaveInstanceState(Bundle outState) {
2321        onSaveInstanceState(outState);
2322        if (mChildFragmentManager != null) {
2323            Parcelable p = mChildFragmentManager.saveAllState();
2324            if (p != null) {
2325                outState.putParcelable(Activity.FRAGMENTS_TAG, p);
2326            }
2327        }
2328    }
2329
2330    void performPause() {
2331        if (mChildFragmentManager != null) {
2332            mChildFragmentManager.dispatchPause();
2333        }
2334        mCalled = false;
2335        onPause();
2336        if (!mCalled) {
2337            throw new SuperNotCalledException("Fragment " + this
2338                    + " did not call through to super.onPause()");
2339        }
2340    }
2341
2342    void performStop() {
2343        if (mChildFragmentManager != null) {
2344            mChildFragmentManager.dispatchStop();
2345        }
2346        mCalled = false;
2347        onStop();
2348        if (!mCalled) {
2349            throw new SuperNotCalledException("Fragment " + this
2350                    + " did not call through to super.onStop()");
2351        }
2352
2353        if (mLoadersStarted) {
2354            mLoadersStarted = false;
2355            if (!mCheckedForLoaderManager) {
2356                mCheckedForLoaderManager = true;
2357                mLoaderManager = mHost.getLoaderManager(mWho, mLoadersStarted, false);
2358            }
2359            if (mLoaderManager != null) {
2360                if (mRetaining) {
2361                    mLoaderManager.doRetain();
2362                } else {
2363                    mLoaderManager.doStop();
2364                }
2365            }
2366        }
2367    }
2368
2369    void performDestroyView() {
2370        if (mChildFragmentManager != null) {
2371            mChildFragmentManager.dispatchDestroyView();
2372        }
2373        mCalled = false;
2374        onDestroyView();
2375        if (!mCalled) {
2376            throw new SuperNotCalledException("Fragment " + this
2377                    + " did not call through to super.onDestroyView()");
2378        }
2379        if (mLoaderManager != null) {
2380            mLoaderManager.doReportNextStart();
2381        }
2382    }
2383
2384    void performDestroy() {
2385        if (mChildFragmentManager != null) {
2386            mChildFragmentManager.dispatchDestroy();
2387        }
2388        mCalled = false;
2389        onDestroy();
2390        if (!mCalled) {
2391            throw new SuperNotCalledException("Fragment " + this
2392                    + " did not call through to super.onDestroy()");
2393        }
2394    }
2395
2396    private static Transition loadTransition(Context context, TypedArray typedArray,
2397            Transition currentValue, Transition defaultValue, int id) {
2398        if (currentValue != defaultValue) {
2399            return currentValue;
2400        }
2401        int transitionId = typedArray.getResourceId(id, 0);
2402        Transition transition = defaultValue;
2403        if (transitionId != 0 && transitionId != com.android.internal.R.transition.no_transition) {
2404            TransitionInflater inflater = TransitionInflater.from(context);
2405            transition = inflater.inflateTransition(transitionId);
2406            if (transition instanceof TransitionSet &&
2407                    ((TransitionSet)transition).getTransitionCount() == 0) {
2408                transition = null;
2409            }
2410        }
2411        return transition;
2412    }
2413
2414}
2415