Searched defs:fragments (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
H A DPhotoViewFragment.java18 package com.android.ex.photo.fragments;
86 "com.android.mail.photo.fragments.PhotoViewFragment.INTENT";
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentActivity.java70 * if you change fragments between the state save and the activity being stopped.
78 static final String FRAGMENTS_TAG = "android:support:fragments";
136 ArrayList<Fragment> fragments; field in class:FragmentActivity.NonConfigurationInstances
236 * Dispatch configuration change to all fragments.
245 * Perform initialization of all fragments and loaders.
264 mFragments.restoreAllState(p, nc != null ? nc.fragments : null);
305 * Destroy all fragments and loaders.
337 * Dispatch onLowMemory() to all fragments.
346 * Dispatch context and options menu to fragments.
367 * Call onOptionsMenuClosed() on fragments
[all...]
H A DBackStackRecord.java746 private static void setFirstOut(SparseArray<Fragment> fragments, Fragment fragment) { argument
750 fragment.getView() != null && fragments.get(containerId) == null) {
751 fragments.put(containerId, fragment);
756 private void setLastIn(SparseArray<Fragment> fragments, Fragment fragment) { argument
760 fragments.put(containerId, fragment);
766 * Finds the first removed fragment and last added fragments when going forward.
767 * If none of the fragments have transitions, then both lists will be empty.
769 * @param firstOutFragments The list of first fragments to be removed, keyed on the
771 * @param lastInFragments The list of last fragments to be added, keyed on the
824 * Finds the first removed fragment and last added fragments whe
[all...]
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java842 private static void setFirstOut(SparseArray<Fragment> fragments, Fragment fragment) { argument
846 fragment.getView() != null && fragments.get(containerId) == null) {
847 fragments.put(containerId, fragment);
852 private void setLastIn(SparseArray<Fragment> fragments, Fragment fragment) { argument
856 fragments.put(containerId, fragment);
862 * Finds the first removed fragment and last added fragments when going forward.
863 * If none of the fragments have transitions, then both lists will be empty.
865 * @param firstOutFragments The list of first fragments to be removed, keyed on the
867 * @param lastInFragments The list of last fragments to be added, keyed on the
920 * Finds the first removed fragment and last added fragments whe
[all...]
H A DActivity.java675 static final String FRAGMENTS_TAG = "android:fragments";
722 ArrayList<Fragment> fragments; field in class:Activity.NonConfigurationInstances
934 ? mLastNonConfigurationInstances.fragments : null);
1838 ArrayList<Fragment> fragments = mFragments.retainNonConfig();
1858 if (activity == null && children == null && fragments == null && !retainLoaders
1866 nci.fragments = fragments;
1885 * Return the FragmentManager for interacting with fragments associated
5317 * This implementation handles <fragment> tags to embed fragments inside

Completed in 1498 milliseconds