Home | History | Annotate | Download | only in app

Lines Matching full:containerid

720                     int containerId = f.mContainerId;
728 if (old.mContainerId == containerId) {
803 int containerId = fragment.mContainerId;
804 if (containerId != 0 && !fragment.isHidden() && fragment.isAdded() &&
805 fragment.getView() != null && fragments.get(containerId) == null) {
806 fragments.put(containerId, fragment);
813 int containerId = fragment.mContainerId;
814 if (containerId != 0) {
815 fragments.put(containerId, fragment);
969 int containerId = firstOutFragments.keyAt(i);
970 configureTransitions(containerId, state, isBack, firstOutFragments,
976 int containerId = lastInFragments.keyAt(i);
977 if (firstOutFragments.get(containerId) == null) {
978 configureTransitions(containerId, state, isBack, firstOutFragments,
1233 * @param containerId The container ID of the fragments to configure the transition for.
1242 private void configureTransitions(int containerId, TransitionState state, boolean isBack,
1244 ViewGroup sceneRoot = (ViewGroup) mManager.mContainer.onFindViewById(containerId);
1246 Fragment inFragment = lastInFragments.get(containerId);
1247 Fragment outFragment = firstOutFragments.get(containerId);
1310 excludeHiddenFragments(hiddenFragments, containerId, transition);
1531 private void excludeHiddenFragments(final ArrayList<View> hiddenFragmentViews, int containerId,
1537 fragment.mContainerId == containerId) {