Home | History | Annotate | Download | only in app

Lines Matching defs:mContainerView

80     private ActionBarContainer mContainerView;
128 mContainerView.setTranslationY(0);
133 mContainerView.setVisibility(View.GONE);
134 mContainerView.setTransitioning(false);
147 mContainerView.requestLayout();
155 final ViewParent parent = mContainerView.getParent();
194 mContainerView = (ActionBarContainer) decor.findViewById(
199 if (mDecorToolbar == null || mContextView == null || mContainerView == null) {
245 mContainerView.setElevation(elevation);
253 return mContainerView.getElevation();
265 mContainerView.setTabContainer(mTabScrollView);
267 mContainerView.setTabContainer(null);
304 mContainerView.setTabContainer(tabScroller);
459 mContainerView.setPrimaryBackground(d);
463 mContainerView.setStackedBackground(d);
640 return mContainerView.getHeight();
759 mContainerView.setVisibility(View.VISIBLE);
763 mContainerView.setTranslationY(0); // because we're about to ask its window loc
764 float startingY = -mContainerView.getHeight();
767 mContainerView.getLocationInWindow(topLeft);
770 mContainerView.setTranslationY(startingY);
772 ObjectAnimator a = ObjectAnimator.ofFloat(mContainerView, View.TRANSLATION_Y, 0);
798 mContainerView.setAlpha(1);
799 mContainerView.setTranslationY(0);
822 mContainerView.setAlpha(1);
823 mContainerView.setTransitioning(true);
825 float endingY = -mContainerView.getHeight();
828 mContainerView.getLocationInWindow(topLeft);
831 ObjectAnimator a = ObjectAnimator.ofFloat(mContainerView, View.TRANSLATION_Y, endingY);