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

/frameworks/support/viewpager2/src/main/java/androidx/viewpager2/widget/
H A DViewPager2.java266 public void setAdapter(FragmentManager fragmentManager, FragmentProvider fragmentProvider, argument
272 mRecyclerView.setAdapter(new FragmentStateAdapter(fragmentManager, fragmentProvider));
300 private FragmentStateAdapter(FragmentManager fragmentManager, argument
302 this.mFragmentManager = fragmentManager;
/frameworks/base/core/java/android/app/
H A DFragmentTransition.java76 * @param fragmentManager The executing FragmentManagerImpl
87 static void startTransitions(FragmentManagerImpl fragmentManager, argument
90 if (fragmentManager.mCurState < Fragment.CREATED) {
106 final View nonExistentView = new View(fragmentManager.mHost.getContext());
116 configureTransitionsReordered(fragmentManager, containerId,
119 configureTransitionsOrdered(fragmentManager, containerId,
182 * @param fragmentManager The executing FragmentManagerImpl
192 private static void configureTransitionsReordered(FragmentManagerImpl fragmentManager, argument
196 if (fragmentManager.mContainer.onHasView()) {
197 sceneRoot = fragmentManager
264 configureTransitionsOrdered(FragmentManagerImpl fragmentManager, int containerId, FragmentContainerTransition fragments, View nonExistentView, ArrayMap<String, String> nameOverrides) argument
[all...]
/frameworks/support/fragment/src/main/java/androidx/fragment/app/
H A DFragmentTransition.java91 * @param fragmentManager The executing FragmentManagerImpl
102 static void startTransitions(FragmentManagerImpl fragmentManager, argument
105 if (fragmentManager.mCurState < Fragment.CREATED) {
122 final View nonExistentView = new View(fragmentManager.mHost.getContext());
133 configureTransitionsReordered(fragmentManager, containerId,
136 configureTransitionsOrdered(fragmentManager, containerId,
199 * @param fragmentManager The executing FragmentManagerImpl
209 private static void configureTransitionsReordered(FragmentManagerImpl fragmentManager, argument
213 if (fragmentManager.mContainer.onHasView()) {
214 sceneRoot = (ViewGroup) fragmentManager
307 configureTransitionsOrdered(FragmentManagerImpl fragmentManager, int containerId, FragmentContainerTransition fragments, View nonExistentView, ArrayMap<String, String> nameOverrides) argument
[all...]
/frameworks/support/leanback/src/main/java/androidx/leanback/app/
H A DGuidedStepFragment.java479 * @param fragmentManager The FragmentManager to be used in the transaction.
483 public static int add(FragmentManager fragmentManager, GuidedStepFragment fragment) { argument
484 return add(fragmentManager, fragment, android.R.id.content);
499 * @param fragmentManager The FragmentManager to be used in the transaction.
504 public static int add(FragmentManager fragmentManager, GuidedStepFragment fragment, int id) { argument
505 GuidedStepFragment current = getCurrentGuidedStepFragment(fragmentManager);
510 fragmentManager.beginTransaction()
514 FragmentTransaction ft = fragmentManager.beginTransaction();
644 FragmentManager fragmentManager = activity.getFragmentManager();
645 if (fragmentManager
[all...]
H A DGuidedStepSupportFragment.java474 * @param fragmentManager The FragmentManager to be used in the transaction.
478 public static int add(FragmentManager fragmentManager, GuidedStepSupportFragment fragment) { argument
479 return add(fragmentManager, fragment, android.R.id.content);
494 * @param fragmentManager The FragmentManager to be used in the transaction.
499 public static int add(FragmentManager fragmentManager, GuidedStepSupportFragment fragment, int id) { argument
500 GuidedStepSupportFragment current = getCurrentGuidedStepSupportFragment(fragmentManager);
505 fragmentManager.beginTransaction()
509 FragmentTransaction ft = fragmentManager.beginTransaction();
639 FragmentManager fragmentManager = activity.getSupportFragmentManager();
640 if (fragmentManager
[all...]

Completed in 182 milliseconds