Lines Matching defs:fragments

70  * if you change fragments between the state save and the activity being stopped.
78 static final String FRAGMENTS_TAG = "android:support:fragments";
130 ArrayList<Fragment> fragments;
185 * Dispatch configuration change to all fragments.
194 * Perform initialization of all fragments and loaders.
213 mFragments.restoreAllState(p, nc != null ? nc.fragments : null);
327 * Destroy all fragments and loaders.
359 * Dispatch onLowMemory() to all fragments.
368 * Dispatch context and options menu to fragments.
389 * Call onOptionsMenuClosed() on fragments.
402 * Dispatch onPause() to fragments.
432 * Dispatch onResume() to fragments. Note that for better inter-operation
434 * fragments attached to the activity are <em>not</em> resumed. This means
437 * with fragments in their proper state, you should instead override
449 * Dispatch onResume() to fragments.
462 * where its fragments are resumed. Be sure to always call through to
470 * Dispatch onPrepareOptionsMenu() to fragments.
507 ArrayList<Fragment> fragments = mFragments.retainNonConfig();
527 if (fragments == null && !retainLoaders && custom == null) {
535 nci.fragments = fragments;
553 * Dispatch onStart() to all fragments. Ensure any created loaders are
603 * Dispatch onStop() to all fragments. Ensure all loaders are stopped.
794 * we need to know this, to know whether to retain fragments. This will
823 * Return the FragmentManager for interacting with fragments associated
831 * Modifies the standard behavior to allow results to be delivered to fragments.