Lines Matching refs:fragments

73  * if you change fragments between the state save and the activity being stopped.
83 static final String FRAGMENTS_TAG = "android:support:fragments";
123 List<Fragment> fragments;
226 * Dispatch configuration change to all fragments.
235 * Perform initialization of all fragments and loaders.
251 mFragments.restoreAllState(p, nc != null ? nc.fragments : null);
282 * Destroy all fragments and loaders.
312 * Dispatch onLowMemory() to all fragments.
321 * Dispatch context and options menu to fragments.
342 * Call onOptionsMenuClosed() on fragments.
355 * Dispatch onPause() to fragments.
392 * Dispatch onResume() to fragments. Note that for better inter-operation
394 * fragments attached to the activity are <em>not</em> resumed. This means
397 * with fragments in their proper state, you should instead override
409 * Dispatch onResume() to fragments.
422 * where its fragments are resumed. Be sure to always call through to
430 * Dispatch onPrepareOptionsMenu() to fragments.
467 List<Fragment> fragments = mFragments.retainNonConfig();
470 if (fragments == null && loaders == null && custom == null) {
476 nci.fragments = fragments;
494 * Dispatch onStart() to all fragments. Ensure any created loaders are
522 * Dispatch onStop() to all fragments. Ensure all loaders are stopped.
707 * we need to know this, to know whether to retain fragments. This will
728 * Return the FragmentManager for interacting with fragments associated
740 * Modifies the standard behavior to allow results to be delivered to fragments.