FragmentActivity.java revision 2bc5191a8cc331b404724759a015949a4b5499fb
1/*
2 * Copyright (C) 2011 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.support.v4.app;
18
19import android.app.Activity;
20import android.content.Context;
21import android.content.Intent;
22import android.content.res.Configuration;
23import android.content.res.Resources;
24import android.content.res.TypedArray;
25import android.os.Bundle;
26import android.os.Handler;
27import android.os.Message;
28import android.os.Parcelable;
29import android.util.AttributeSet;
30import android.util.Log;
31import android.view.KeyEvent;
32import android.view.Menu;
33import android.view.MenuItem;
34import android.view.View;
35import android.view.ViewGroup;
36import android.view.Window;
37
38import java.io.FileDescriptor;
39import java.io.PrintWriter;
40import java.util.ArrayList;
41import java.util.HashMap;
42
43/**
44 * Base class for activities that want to use the support-based
45 * {@link android.support.v4.app.Fragment} and
46 * {@link android.support.v4.content.Loader} APIs.
47 *
48 * <p>When using this class as opposed to new platform's built-in fragment
49 * and loader support, you must use the {@link #getSupportFragmentManager()}
50 * and {@link #getSupportLoaderManager()} methods respectively to access
51 * those features.
52 *
53 * <p class="note"><strong>Note:</strong> If you want to implement an activity that includes
54 * an <a href="{@docRoot}guide/topics/ui/actionbar.html">action bar</a>, you should instead use
55 * the {@link android.support.v7.app.ActionBarActivity} class, which is a subclass of this one,
56 * so allows you to use {@link android.support.v4.app.Fragment} APIs on API level 7 and higher.</p>
57 *
58 * <p>Known limitations:</p>
59 * <ul>
60 * <li> <p>When using the <code>&lt;fragment></code> tag, this implementation can not
61 * use the parent view's ID as the new fragment's ID.  You must explicitly
62 * specify an ID (or tag) in the <code>&lt;fragment></code>.</p>
63 * <li> <p>Prior to Honeycomb (3.0), an activity's state was saved before pausing.
64 * Fragments are a significant amount of new state, and dynamic enough that one
65 * often wants them to change between pausing and stopping.  These classes
66 * throw an exception if you try to change the fragment state after it has been
67 * saved, to avoid accidental loss of UI state.  However this is too restrictive
68 * prior to Honeycomb, where the state is saved before pausing.  To address this,
69 * when running on platforms prior to Honeycomb an exception will not be thrown
70 * if you change fragments between the state save and the activity being stopped.
71 * This means that in some cases if the activity is restored from its last saved
72 * state, this may be a snapshot slightly before what the user last saw.</p>
73 * </ul>
74 */
75public class FragmentActivity extends Activity {
76    private static final String TAG = "FragmentActivity";
77
78    static final String FRAGMENTS_TAG = "android:support:fragments";
79
80    // This is the SDK API version of Honeycomb (3.0).
81    private static final int HONEYCOMB = 11;
82
83    static final int MSG_REALLY_STOPPED = 1;
84    static final int MSG_RESUME_PENDING = 2;
85
86    final Handler mHandler = new Handler() {
87        @Override
88        public void handleMessage(Message msg) {
89            switch (msg.what) {
90                case MSG_REALLY_STOPPED:
91                    if (mStopped) {
92                        doReallyStop(false);
93                    }
94                    break;
95                case MSG_RESUME_PENDING:
96                    onResumeFragments();
97                    mFragments.execPendingActions();
98                    break;
99                default:
100                    super.handleMessage(msg);
101            }
102        }
103
104    };
105    final FragmentManagerImpl mFragments = new FragmentManagerImpl();
106    final FragmentContainer mContainer = new FragmentContainer() {
107        @Override
108        public View findViewById(int id) {
109            return FragmentActivity.this.findViewById(id);
110        }
111    };
112
113    boolean mCreated;
114    boolean mResumed;
115    boolean mStopped;
116    boolean mReallyStopped;
117    boolean mRetaining;
118
119    boolean mOptionsMenuInvalidated;
120
121    boolean mCheckedForLoaderManager;
122    boolean mLoadersStarted;
123    HashMap<String, LoaderManagerImpl> mAllLoaderManagers;
124    LoaderManagerImpl mLoaderManager;
125
126    static final class NonConfigurationInstances {
127        Object activity;
128        Object custom;
129        HashMap<String, Object> children;
130        ArrayList<Fragment> fragments;
131        HashMap<String, LoaderManagerImpl> loaders;
132    }
133
134    static class FragmentTag {
135        public static final int[] Fragment = {
136            0x01010003, 0x010100d0, 0x010100d1
137        };
138        public static final int Fragment_id = 1;
139        public static final int Fragment_name = 0;
140        public static final int Fragment_tag = 2;
141    }
142
143    // ------------------------------------------------------------------------
144    // HOOKS INTO ACTIVITY
145    // ------------------------------------------------------------------------
146
147    /**
148     * Dispatch incoming result to the correct fragment.
149     */
150    @Override
151    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
152        mFragments.noteStateNotSaved();
153        int index = requestCode>>16;
154        if (index != 0) {
155            index--;
156            if (mFragments.mActive == null || index < 0 || index >= mFragments.mActive.size()) {
157                Log.w(TAG, "Activity result fragment index out of range: 0x"
158                        + Integer.toHexString(requestCode));
159                return;
160            }
161            Fragment frag = mFragments.mActive.get(index);
162            if (frag == null) {
163                Log.w(TAG, "Activity result no fragment exists for index: 0x"
164                        + Integer.toHexString(requestCode));
165            } else {
166                frag.onActivityResult(requestCode&0xffff, resultCode, data);
167            }
168            return;
169        }
170
171        super.onActivityResult(requestCode, resultCode, data);
172    }
173
174    /**
175     * Take care of popping the fragment back stack or finishing the activity
176     * as appropriate.
177     */
178    public void onBackPressed() {
179        if (!mFragments.popBackStackImmediate()) {
180            finish();
181        }
182    }
183
184    /**
185     * Dispatch configuration change to all fragments.
186     */
187    @Override
188    public void onConfigurationChanged(Configuration newConfig) {
189        super.onConfigurationChanged(newConfig);
190        mFragments.dispatchConfigurationChanged(newConfig);
191    }
192
193    /**
194     * Perform initialization of all fragments and loaders.
195     */
196    @Override
197    protected void onCreate(Bundle savedInstanceState) {
198        mFragments.attachActivity(this, mContainer, null);
199        // Old versions of the platform didn't do this!
200        if (getLayoutInflater().getFactory() == null) {
201            getLayoutInflater().setFactory(this);
202        }
203
204        super.onCreate(savedInstanceState);
205
206        NonConfigurationInstances nc = (NonConfigurationInstances)
207                getLastNonConfigurationInstance();
208        if (nc != null) {
209            mAllLoaderManagers = nc.loaders;
210        }
211        if (savedInstanceState != null) {
212            Parcelable p = savedInstanceState.getParcelable(FRAGMENTS_TAG);
213            mFragments.restoreAllState(p, nc != null ? nc.fragments : null);
214        }
215        mFragments.dispatchCreate();
216    }
217
218    /**
219     * Dispatch to Fragment.onCreateOptionsMenu().
220     */
221    @Override
222    public boolean onCreatePanelMenu(int featureId, Menu menu) {
223        if (featureId == Window.FEATURE_OPTIONS_PANEL) {
224            boolean show = super.onCreatePanelMenu(featureId, menu);
225            show |= mFragments.dispatchCreateOptionsMenu(menu, getMenuInflater());
226            if (android.os.Build.VERSION.SDK_INT >= HONEYCOMB) {
227                return show;
228            }
229            // Prior to Honeycomb, the framework can't invalidate the options
230            // menu, so we must always say we have one in case the app later
231            // invalidates it and needs to have it shown.
232            return true;
233        }
234        return super.onCreatePanelMenu(featureId, menu);
235    }
236
237    /**
238     * Add support for inflating the &lt;fragment> tag.
239     */
240    @Override
241    public View onCreateView(String name, Context context, AttributeSet attrs) {
242        if (!"fragment".equals(name)) {
243            return super.onCreateView(name, context, attrs);
244        }
245
246        String fname = attrs.getAttributeValue(null, "class");
247        TypedArray a =  context.obtainStyledAttributes(attrs, FragmentTag.Fragment);
248        if (fname == null) {
249            fname = a.getString(FragmentTag.Fragment_name);
250        }
251        int id = a.getResourceId(FragmentTag.Fragment_id, View.NO_ID);
252        String tag = a.getString(FragmentTag.Fragment_tag);
253        a.recycle();
254
255        View parent = null; // NOTE: no way to get parent pre-Honeycomb.
256        int containerId = parent != null ? parent.getId() : 0;
257        if (containerId == View.NO_ID && id == View.NO_ID && tag == null) {
258            throw new IllegalArgumentException(attrs.getPositionDescription()
259                    + ": Must specify unique android:id, android:tag, or have a parent with an id for " + fname);
260        }
261
262        // If we restored from a previous state, we may already have
263        // instantiated this fragment from the state and should use
264        // that instance instead of making a new one.
265        Fragment fragment = id != View.NO_ID ? mFragments.findFragmentById(id) : null;
266        if (fragment == null && tag != null) {
267            fragment = mFragments.findFragmentByTag(tag);
268        }
269        if (fragment == null && containerId != View.NO_ID) {
270            fragment = mFragments.findFragmentById(containerId);
271        }
272
273        if (FragmentManagerImpl.DEBUG) Log.v(TAG, "onCreateView: id=0x"
274                + Integer.toHexString(id) + " fname=" + fname
275                + " existing=" + fragment);
276        if (fragment == null) {
277            fragment = Fragment.instantiate(this, fname);
278            fragment.mFromLayout = true;
279            fragment.mFragmentId = id != 0 ? id : containerId;
280            fragment.mContainerId = containerId;
281            fragment.mTag = tag;
282            fragment.mInLayout = true;
283            fragment.mFragmentManager = mFragments;
284            fragment.onInflate(this, attrs, fragment.mSavedFragmentState);
285            mFragments.addFragment(fragment, true);
286
287        } else if (fragment.mInLayout) {
288            // A fragment already exists and it is not one we restored from
289            // previous state.
290            throw new IllegalArgumentException(attrs.getPositionDescription()
291                    + ": Duplicate id 0x" + Integer.toHexString(id)
292                    + ", tag " + tag + ", or parent id 0x" + Integer.toHexString(containerId)
293                    + " with another fragment for " + fname);
294        } else {
295            // This fragment was retained from a previous instance; get it
296            // going now.
297            fragment.mInLayout = true;
298            // If this fragment is newly instantiated (either right now, or
299            // from last saved state), then give it the attributes to
300            // initialize itself.
301            if (!fragment.mRetaining) {
302                fragment.onInflate(this, attrs, fragment.mSavedFragmentState);
303            }
304            mFragments.moveToState(fragment);
305        }
306
307        if (fragment.mView == null) {
308            throw new IllegalStateException("Fragment " + fname
309                    + " did not create a view.");
310        }
311        if (id != 0) {
312            fragment.mView.setId(id);
313        }
314        if (fragment.mView.getTag() == null) {
315            fragment.mView.setTag(tag);
316        }
317        return fragment.mView;
318    }
319
320    /**
321     * Destroy all fragments and loaders.
322     */
323    @Override
324    protected void onDestroy() {
325        super.onDestroy();
326
327        doReallyStop(false);
328
329        mFragments.dispatchDestroy();
330        if (mLoaderManager != null) {
331            mLoaderManager.doDestroy();
332        }
333    }
334
335    /**
336     * Take care of calling onBackPressed() for pre-Eclair platforms.
337     */
338    @Override
339    public boolean onKeyDown(int keyCode, KeyEvent event) {
340        if (android.os.Build.VERSION.SDK_INT < 5 /* ECLAIR */
341                && keyCode == KeyEvent.KEYCODE_BACK
342                && event.getRepeatCount() == 0) {
343            // Take care of calling this method on earlier versions of
344            // the platform where it doesn't exist.
345            onBackPressed();
346            return true;
347        }
348
349        return super.onKeyDown(keyCode, event);
350    }
351
352    /**
353     * Dispatch onLowMemory() to all fragments.
354     */
355    @Override
356    public void onLowMemory() {
357        super.onLowMemory();
358        mFragments.dispatchLowMemory();
359    }
360
361    /**
362     * Dispatch context and options menu to fragments.
363     */
364    @Override
365    public boolean onMenuItemSelected(int featureId, MenuItem item) {
366        if (super.onMenuItemSelected(featureId, item)) {
367            return true;
368        }
369
370        switch (featureId) {
371            case Window.FEATURE_OPTIONS_PANEL:
372                return mFragments.dispatchOptionsItemSelected(item);
373
374            case Window.FEATURE_CONTEXT_MENU:
375                return mFragments.dispatchContextItemSelected(item);
376
377            default:
378                return false;
379        }
380    }
381
382    /**
383     * Call onOptionsMenuClosed() on fragments.
384     */
385    @Override
386    public void onPanelClosed(int featureId, Menu menu) {
387        switch (featureId) {
388            case Window.FEATURE_OPTIONS_PANEL:
389                mFragments.dispatchOptionsMenuClosed(menu);
390                break;
391        }
392        super.onPanelClosed(featureId, menu);
393    }
394
395    /**
396     * Dispatch onPause() to fragments.
397     */
398    @Override
399    protected void onPause() {
400        super.onPause();
401        mResumed = false;
402        if (mHandler.hasMessages(MSG_RESUME_PENDING)) {
403            mHandler.removeMessages(MSG_RESUME_PENDING);
404            onResumeFragments();
405        }
406        mFragments.dispatchPause();
407    }
408
409    /**
410     * Handle onNewIntent() to inform the fragment manager that the
411     * state is not saved.  If you are handling new intents and may be
412     * making changes to the fragment state, you want to be sure to call
413     * through to the super-class here first.  Otherwise, if your state
414     * is saved but the activity is not stopped, you could get an
415     * onNewIntent() call which happens before onResume() and trying to
416     * perform fragment operations at that point will throw IllegalStateException
417     * because the fragment manager thinks the state is still saved.
418     */
419    @Override
420    protected void onNewIntent(Intent intent) {
421        super.onNewIntent(intent);
422        mFragments.noteStateNotSaved();
423    }
424
425    /**
426     * Dispatch onResume() to fragments.  Note that for better inter-operation
427     * with older versions of the platform, at the point of this call the
428     * fragments attached to the activity are <em>not</em> resumed.  This means
429     * that in some cases the previous state may still be saved, not allowing
430     * fragment transactions that modify the state.  To correctly interact
431     * with fragments in their proper state, you should instead override
432     * {@link #onResumeFragments()}.
433     */
434    @Override
435    protected void onResume() {
436        super.onResume();
437        mHandler.sendEmptyMessage(MSG_RESUME_PENDING);
438        mResumed = true;
439        mFragments.execPendingActions();
440    }
441
442    /**
443     * Dispatch onResume() to fragments.
444     */
445    @Override
446    protected void onPostResume() {
447        super.onPostResume();
448        mHandler.removeMessages(MSG_RESUME_PENDING);
449        onResumeFragments();
450        mFragments.execPendingActions();
451    }
452
453    /**
454     * This is the fragment-orientated version of {@link #onResume()} that you
455     * can override to perform operations in the Activity at the same point
456     * where its fragments are resumed.  Be sure to always call through to
457     * the super-class.
458     */
459    protected void onResumeFragments() {
460        mFragments.dispatchResume();
461    }
462
463    /**
464     * Dispatch onPrepareOptionsMenu() to fragments.
465     */
466    @Override
467    public boolean onPreparePanel(int featureId, View view, Menu menu) {
468        if (featureId == Window.FEATURE_OPTIONS_PANEL && menu != null) {
469            if (mOptionsMenuInvalidated) {
470                mOptionsMenuInvalidated = false;
471                menu.clear();
472                onCreatePanelMenu(featureId, menu);
473            }
474            boolean goforit = onPrepareOptionsPanel(view, menu);
475            goforit |= mFragments.dispatchPrepareOptionsMenu(menu);
476            return goforit;
477        }
478        return super.onPreparePanel(featureId, view, menu);
479    }
480
481    /**
482     * @hide
483     */
484    protected boolean onPrepareOptionsPanel(View view, Menu menu) {
485        return super.onPreparePanel(Window.FEATURE_OPTIONS_PANEL, view, menu);
486    }
487
488    /**
489     * Retain all appropriate fragment and loader state.  You can NOT
490     * override this yourself!  Use {@link #onRetainCustomNonConfigurationInstance()}
491     * if you want to retain your own state.
492     */
493    @Override
494    public final Object onRetainNonConfigurationInstance() {
495        if (mStopped) {
496            doReallyStop(true);
497        }
498
499        Object custom = onRetainCustomNonConfigurationInstance();
500
501        ArrayList<Fragment> fragments = mFragments.retainNonConfig();
502        boolean retainLoaders = false;
503        if (mAllLoaderManagers != null) {
504            // prune out any loader managers that were already stopped and so
505            // have nothing useful to retain.
506            LoaderManagerImpl loaders[] = new LoaderManagerImpl[mAllLoaderManagers.size()];
507            mAllLoaderManagers.values().toArray(loaders);
508            if (loaders != null) {
509                for (int i=0; i<loaders.length; i++) {
510                    LoaderManagerImpl lm = loaders[i];
511                    if (lm.mRetaining) {
512                        retainLoaders = true;
513                    } else {
514                        lm.doDestroy();
515                        mAllLoaderManagers.remove(lm.mWho);
516                    }
517                }
518            }
519        }
520        if (fragments == null && !retainLoaders && custom == null) {
521            return null;
522        }
523
524        NonConfigurationInstances nci = new NonConfigurationInstances();
525        nci.activity = null;
526        nci.custom = custom;
527        nci.children = null;
528        nci.fragments = fragments;
529        nci.loaders = mAllLoaderManagers;
530        return nci;
531    }
532
533    /**
534     * Save all appropriate fragment state.
535     */
536    @Override
537    protected void onSaveInstanceState(Bundle outState) {
538        super.onSaveInstanceState(outState);
539        Parcelable p = mFragments.saveAllState();
540        if (p != null) {
541            outState.putParcelable(FRAGMENTS_TAG, p);
542        }
543    }
544
545    /**
546     * Dispatch onStart() to all fragments.  Ensure any created loaders are
547     * now started.
548     */
549    @Override
550    protected void onStart() {
551        super.onStart();
552
553        mStopped = false;
554        mReallyStopped = false;
555        mHandler.removeMessages(MSG_REALLY_STOPPED);
556
557        if (!mCreated) {
558            mCreated = true;
559            mFragments.dispatchActivityCreated();
560        }
561
562        mFragments.noteStateNotSaved();
563        mFragments.execPendingActions();
564
565        if (!mLoadersStarted) {
566            mLoadersStarted = true;
567            if (mLoaderManager != null) {
568                mLoaderManager.doStart();
569            } else if (!mCheckedForLoaderManager) {
570                mLoaderManager = getLoaderManager(null, mLoadersStarted, false);
571                // the returned loader manager may be a new one, so we have to start it
572                if ((mLoaderManager != null) && (!mLoaderManager.mStarted)) {
573                    mLoaderManager.doStart();
574                }
575            }
576            mCheckedForLoaderManager = true;
577        }
578        // NOTE: HC onStart goes here.
579
580        mFragments.dispatchStart();
581        if (mAllLoaderManagers != null) {
582            LoaderManagerImpl loaders[] = new LoaderManagerImpl[mAllLoaderManagers.size()];
583            mAllLoaderManagers.values().toArray(loaders);
584            if (loaders != null) {
585                for (int i=0; i<loaders.length; i++) {
586                    LoaderManagerImpl lm = loaders[i];
587                    lm.finishRetain();
588                    lm.doReportStart();
589                }
590            }
591        }
592    }
593
594    /**
595     * Dispatch onStop() to all fragments.  Ensure all loaders are stopped.
596     */
597    @Override
598    protected void onStop() {
599        super.onStop();
600
601        mStopped = true;
602        mHandler.sendEmptyMessage(MSG_REALLY_STOPPED);
603
604        mFragments.dispatchStop();
605    }
606
607    // ------------------------------------------------------------------------
608    // NEW METHODS
609    // ------------------------------------------------------------------------
610
611    /**
612     * Use this instead of {@link #onRetainNonConfigurationInstance()}.
613     * Retrieve later with {@link #getLastCustomNonConfigurationInstance()}.
614     */
615    public Object onRetainCustomNonConfigurationInstance() {
616        return null;
617    }
618
619    /**
620     * Return the value previously returned from
621     * {@link #onRetainCustomNonConfigurationInstance()}.
622     */
623    public Object getLastCustomNonConfigurationInstance() {
624        NonConfigurationInstances nc = (NonConfigurationInstances)
625                getLastNonConfigurationInstance();
626        return nc != null ? nc.custom : null;
627    }
628
629    /**
630     * Support library version of {@link Activity#invalidateOptionsMenu}.
631     *
632     * <p>Invalidate the activity's options menu. This will cause relevant presentations
633     * of the menu to fully update via calls to onCreateOptionsMenu and
634     * onPrepareOptionsMenu the next time the menu is requested.
635     */
636    public void supportInvalidateOptionsMenu() {
637        if (android.os.Build.VERSION.SDK_INT >= HONEYCOMB) {
638            // If we are running on HC or greater, we can use the framework
639            // API to invalidate the options menu.
640            ActivityCompatHoneycomb.invalidateOptionsMenu(this);
641            return;
642        }
643
644        // Whoops, older platform...  we'll use a hack, to manually rebuild
645        // the options menu the next time it is prepared.
646        mOptionsMenuInvalidated = true;
647    }
648
649    /**
650     * Print the Activity's state into the given stream.  This gets invoked if
651     * you run "adb shell dumpsys activity <activity_component_name>".
652     *
653     * @param prefix Desired prefix to prepend at each line of output.
654     * @param fd The raw file descriptor that the dump is being sent to.
655     * @param writer The PrintWriter to which you should dump your state.  This will be
656     * closed for you after you return.
657     * @param args additional arguments to the dump request.
658     */
659    public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
660        if (android.os.Build.VERSION.SDK_INT >= HONEYCOMB) {
661            // XXX This can only work if we can call the super-class impl. :/
662            //ActivityCompatHoneycomb.dump(this, prefix, fd, writer, args);
663        }
664        writer.print(prefix); writer.print("Local FragmentActivity ");
665                writer.print(Integer.toHexString(System.identityHashCode(this)));
666                writer.println(" State:");
667        String innerPrefix = prefix + "  ";
668        writer.print(innerPrefix); writer.print("mCreated=");
669                writer.print(mCreated); writer.print("mResumed=");
670                writer.print(mResumed); writer.print(" mStopped=");
671                writer.print(mStopped); writer.print(" mReallyStopped=");
672                writer.println(mReallyStopped);
673        writer.print(innerPrefix); writer.print("mLoadersStarted=");
674                writer.println(mLoadersStarted);
675        if (mLoaderManager != null) {
676            writer.print(prefix); writer.print("Loader Manager ");
677                    writer.print(Integer.toHexString(System.identityHashCode(mLoaderManager)));
678                    writer.println(":");
679            mLoaderManager.dump(prefix + "  ", fd, writer, args);
680        }
681        mFragments.dump(prefix, fd, writer, args);
682        writer.print(prefix); writer.println("View Hierarchy:");
683        dumpViewHierarchy(prefix + "  ", writer, getWindow().getDecorView());
684    }
685
686    private static String viewToString(View view) {
687        StringBuilder out = new StringBuilder(128);
688        out.append(view.getClass().getName());
689        out.append('{');
690        out.append(Integer.toHexString(System.identityHashCode(view)));
691        out.append(' ');
692        switch (view.getVisibility()) {
693            case View.VISIBLE: out.append('V'); break;
694            case View.INVISIBLE: out.append('I'); break;
695            case View.GONE: out.append('G'); break;
696            default: out.append('.'); break;
697        }
698        out.append(view.isFocusable() ? 'F' : '.');
699        out.append(view.isEnabled() ? 'E' : '.');
700        out.append(view.willNotDraw() ? '.' : 'D');
701        out.append(view.isHorizontalScrollBarEnabled()? 'H' : '.');
702        out.append(view.isVerticalScrollBarEnabled() ? 'V' : '.');
703        out.append(view.isClickable() ? 'C' : '.');
704        out.append(view.isLongClickable() ? 'L' : '.');
705        out.append(' ');
706        out.append(view.isFocused() ? 'F' : '.');
707        out.append(view.isSelected() ? 'S' : '.');
708        out.append(view.isPressed() ? 'P' : '.');
709        out.append(' ');
710        out.append(view.getLeft());
711        out.append(',');
712        out.append(view.getTop());
713        out.append('-');
714        out.append(view.getRight());
715        out.append(',');
716        out.append(view.getBottom());
717        final int id = view.getId();
718        if (id != View.NO_ID) {
719            out.append(" #");
720            out.append(Integer.toHexString(id));
721            final Resources r = view.getResources();
722            if (id != 0 && r != null) {
723                try {
724                    String pkgname;
725                    switch (id&0xff000000) {
726                        case 0x7f000000:
727                            pkgname="app";
728                            break;
729                        case 0x01000000:
730                            pkgname="android";
731                            break;
732                        default:
733                            pkgname = r.getResourcePackageName(id);
734                            break;
735                    }
736                    String typename = r.getResourceTypeName(id);
737                    String entryname = r.getResourceEntryName(id);
738                    out.append(" ");
739                    out.append(pkgname);
740                    out.append(":");
741                    out.append(typename);
742                    out.append("/");
743                    out.append(entryname);
744                } catch (Resources.NotFoundException e) {
745                }
746            }
747        }
748        out.append("}");
749        return out.toString();
750    }
751
752    private void dumpViewHierarchy(String prefix, PrintWriter writer, View view) {
753        writer.print(prefix);
754        if (view == null) {
755            writer.println("null");
756            return;
757        }
758        writer.println(viewToString(view));
759        if (!(view instanceof ViewGroup)) {
760            return;
761        }
762        ViewGroup grp = (ViewGroup)view;
763        final int N = grp.getChildCount();
764        if (N <= 0) {
765            return;
766        }
767        prefix = prefix + "  ";
768        for (int i=0; i<N; i++) {
769            dumpViewHierarchy(prefix, writer, grp.getChildAt(i));
770        }
771    }
772
773    void doReallyStop(boolean retaining) {
774        if (!mReallyStopped) {
775            mReallyStopped = true;
776            mRetaining = retaining;
777            mHandler.removeMessages(MSG_REALLY_STOPPED);
778            onReallyStop();
779        }
780    }
781
782    /**
783     * Pre-HC, we didn't have a way to determine whether an activity was
784     * being stopped for a config change or not until we saw
785     * onRetainNonConfigurationInstance() called after onStop().  However
786     * we need to know this, to know whether to retain fragments.  This will
787     * tell us what we need to know.
788     */
789    void onReallyStop() {
790        if (mLoadersStarted) {
791            mLoadersStarted = false;
792            if (mLoaderManager != null) {
793                if (!mRetaining) {
794                    mLoaderManager.doStop();
795                } else {
796                    mLoaderManager.doRetain();
797                }
798            }
799        }
800
801        mFragments.dispatchReallyStop();
802    }
803
804    // ------------------------------------------------------------------------
805    // FRAGMENT SUPPORT
806    // ------------------------------------------------------------------------
807
808    /**
809     * Called when a fragment is attached to the activity.
810     */
811    public void onAttachFragment(Fragment fragment) {
812    }
813
814    /**
815     * Return the FragmentManager for interacting with fragments associated
816     * with this activity.
817     */
818    public FragmentManager getSupportFragmentManager() {
819        return mFragments;
820    }
821
822    /**
823     * Modifies the standard behavior to allow results to be delivered to fragments.
824     * This imposes a restriction that requestCode be <= 0xffff.
825     */
826    @Override
827    public void startActivityForResult(Intent intent, int requestCode) {
828        if (requestCode != -1 && (requestCode&0xffff0000) != 0) {
829            throw new IllegalArgumentException("Can only use lower 16 bits for requestCode");
830        }
831        super.startActivityForResult(intent, requestCode);
832    }
833
834    /**
835     * Called by Fragment.startActivityForResult() to implement its behavior.
836     */
837    public void startActivityFromFragment(Fragment fragment, Intent intent,
838            int requestCode) {
839        if (requestCode == -1) {
840            super.startActivityForResult(intent, -1);
841            return;
842        }
843        if ((requestCode&0xffff0000) != 0) {
844            throw new IllegalArgumentException("Can only use lower 16 bits for requestCode");
845        }
846        super.startActivityForResult(intent, ((fragment.mIndex+1)<<16) + (requestCode&0xffff));
847    }
848
849    void invalidateSupportFragment(String who) {
850        //Log.v(TAG, "invalidateSupportFragment: who=" + who);
851        if (mAllLoaderManagers != null) {
852            LoaderManagerImpl lm = mAllLoaderManagers.get(who);
853            if (lm != null && !lm.mRetaining) {
854                lm.doDestroy();
855                mAllLoaderManagers.remove(who);
856            }
857        }
858    }
859
860    // ------------------------------------------------------------------------
861    // LOADER SUPPORT
862    // ------------------------------------------------------------------------
863
864    /**
865     * Return the LoaderManager for this fragment, creating it if needed.
866     */
867    public LoaderManager getSupportLoaderManager() {
868        if (mLoaderManager != null) {
869            return mLoaderManager;
870        }
871        mCheckedForLoaderManager = true;
872        mLoaderManager = getLoaderManager(null, mLoadersStarted, true);
873        return mLoaderManager;
874    }
875
876    LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) {
877        if (mAllLoaderManagers == null) {
878            mAllLoaderManagers = new HashMap<String, LoaderManagerImpl>();
879        }
880        LoaderManagerImpl lm = mAllLoaderManagers.get(who);
881        if (lm == null) {
882            if (create) {
883                lm = new LoaderManagerImpl(who, this, started);
884                mAllLoaderManagers.put(who, lm);
885            }
886        } else {
887            lm.updateActivity(this);
888        }
889        return lm;
890    }
891}
892