Home
last modified time | relevance | path

Searched refs:fragmentManager (Results 1 – 8 of 8) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
DGuidedStepSupportFragment.java478 public static int add(FragmentManager fragmentManager, GuidedStepSupportFragment fragment) { in add() argument
479 return add(fragmentManager, fragment, android.R.id.content); in add()
499 …public static int add(FragmentManager fragmentManager, GuidedStepSupportFragment fragment, int id)… in add() argument
500 GuidedStepSupportFragment current = getCurrentGuidedStepSupportFragment(fragmentManager); in add()
505 fragmentManager.beginTransaction() in add()
509 FragmentTransaction ft = fragmentManager.beginTransaction(); in add()
639 FragmentManager fragmentManager = activity.getSupportFragmentManager(); in addAsRoot() local
640 if (fragmentManager.findFragmentByTag(TAG_LEAN_BACK_ACTIONS_FRAGMENT) != null) { in addAsRoot()
645 FragmentTransaction ft = fragmentManager.beginTransaction(); in addAsRoot()
1249 final FragmentManager fragmentManager = getFragmentManager(); in finishGuidedStepSupportFragments() local
[all …]
DGuidedStepFragment.java475 public static int add(FragmentManager fragmentManager, GuidedStepFragment fragment) { in add() argument
476 return add(fragmentManager, fragment, android.R.id.content); in add()
496 public static int add(FragmentManager fragmentManager, GuidedStepFragment fragment, int id) { in add() argument
497 GuidedStepFragment current = getCurrentGuidedStepFragment(fragmentManager); in add()
502 fragmentManager.beginTransaction() in add()
506 FragmentTransaction ft = fragmentManager.beginTransaction(); in add()
636 FragmentManager fragmentManager = activity.getFragmentManager(); in addAsRoot() local
637 if (fragmentManager.findFragmentByTag(TAG_LEAN_BACK_ACTIONS_FRAGMENT) != null) { in addAsRoot()
642 FragmentTransaction ft = fragmentManager.beginTransaction(); in addAsRoot()
1246 final FragmentManager fragmentManager = getFragmentManager(); in finishGuidedStepFragments() local
[all …]
/frameworks/support/fragment/tests/java/android/support/v4/app/
DNestedFragmentTest.java57 final FragmentManager fragmentManager = in setup() local
60 fragmentManager.beginTransaction().add(mParentFragment, "parent").commit(); in setup()
65 fragmentManager.executePendingTransactions(); in setup()
DFragmentTestUtil.java76 FragmentManager fragmentManager = rule.getActivity().getSupportFragmentManager(); in executePendingTransactions() local
77 return executePendingTransactions(rule, fragmentManager); in executePendingTransactions()
/frameworks/support/fragment/java/android/support/v4/app/
DFragmentTransition.java83 static void startTransitions(FragmentManagerImpl fragmentManager, in startTransitions() argument
86 if (fragmentManager.mCurState < Fragment.CREATED) { in startTransitions()
104 final View nonExistentView = new View(fragmentManager.mHost.getContext()); in startTransitions()
115 configureTransitionsReordered(fragmentManager, containerId, in startTransitions()
118 configureTransitionsOrdered(fragmentManager, containerId, in startTransitions()
193 private static void configureTransitionsReordered(FragmentManagerImpl fragmentManager, in configureTransitionsReordered() argument
197 if (fragmentManager.mContainer.onHasView()) { in configureTransitionsReordered()
198 sceneRoot = (ViewGroup) fragmentManager.mContainer.onFindViewById(containerId); in configureTransitionsReordered()
288 private static void configureTransitionsOrdered(FragmentManagerImpl fragmentManager, in configureTransitionsOrdered() argument
292 if (fragmentManager.mContainer.onHasView()) { in configureTransitionsOrdered()
[all …]
DFragmentActivity.java163 FragmentManager fragmentManager = mFragments.getSupportFragmentManager(); in onBackPressed() local
164 final boolean isStateSaved = fragmentManager.isStateSaved(); in onBackPressed()
172 if (isStateSaved || !fragmentManager.popBackStackImmediate()) { in onBackPressed()
/frameworks/base/core/java/android/app/
DFragmentTransition.java87 static void startTransitions(FragmentManagerImpl fragmentManager, in startTransitions() argument
90 if (fragmentManager.mCurState < Fragment.CREATED) { in startTransitions()
106 final View nonExistentView = new View(fragmentManager.mHost.getContext()); in startTransitions()
116 configureTransitionsReordered(fragmentManager, containerId, in startTransitions()
119 configureTransitionsOrdered(fragmentManager, containerId, in startTransitions()
192 private static void configureTransitionsReordered(FragmentManagerImpl fragmentManager, in configureTransitionsReordered() argument
196 if (fragmentManager.mContainer.onHasView()) { in configureTransitionsReordered()
197 sceneRoot = fragmentManager.mContainer.onFindViewById(containerId); in configureTransitionsReordered()
264 private static void configureTransitionsOrdered(FragmentManagerImpl fragmentManager, in configureTransitionsOrdered() argument
268 if (fragmentManager.mContainer.onHasView()) { in configureTransitionsOrdered()
[all …]
DActivity.java2991 FragmentManager fragmentManager = mFragments.getFragmentManager(); in onBackPressed() local
2993 if (fragmentManager.isStateSaved() || !fragmentManager.popBackStackImmediate()) { in onBackPressed()