Searched defs:decorView (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/app/
H A DEnterTransitionCoordinator.java71 final View decorView = getDecor();
72 if (decorView != null) {
73 decorView.getViewTreeObserver().addOnPreDrawListener(
78 decorView.getViewTreeObserver().removeOnPreDrawListener(this);
156 ViewGroup decorView = getDecor();
157 if (decorView != null) {
158 decorView.findNamedViews(sharedElements);
177 final View decorView = getDecor();
180 } else if (decorView == null) {
183 allReady = !decorView
413 beginTransition(ViewGroup decorView, boolean startEnterTransition, boolean startSharedElementTransition) argument
[all...]
H A DExitTransitionCoordinator.java134 ViewGroup decorView = getDecor();
135 if (!mIsReturning && decorView != null) {
136 decorView.suppressLayout(false);
143 final ViewGroup decorView = getDecor();
144 if (decorView != null) {
145 decorView.suppressLayout(true);
147 if (decorView != null && mExitSharedElementBundle != null &&
152 startSharedElementExit(decorView);
160 private void startSharedElementExit(final ViewGroup decorView) { argument
173 decorView
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivityDelegateBase.java847 if (st.decorView == null || st.refreshDecorView) {
848 if (st.decorView == null) {
849 // Initialize the panel decor, this will populate st.decorView
850 if (!initializePanelDecor(st) || (st.decorView == null))
852 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
854 st.decorView.removeAllViews();
868 st.decorView.setBackgroundResource(backgroundResId);
874 st.decorView.addView(st.shownPanelView, lp);
904 wm.addView(st.decorView, lp);
910 st.decorView
1550 ViewGroup decorView; field in class:ActionBarActivityDelegateBase.PanelFeatureState
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java708 if (st.decorView == null || st.refreshDecorView) {
709 if (st.decorView == null) {
710 // Initialize the panel decor, this will populate st.decorView
711 if (!initializePanelDecor(st) || (st.decorView == null))
713 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
715 st.decorView.removeAllViews();
738 st.decorView.setWindowBackground(getContext().getDrawable(
745 st.decorView.addView(st.shownPanelView, lp);
772 st.decorView.mDefaultOpacity);
783 wm.addView(st.decorView, l
4341 DecorView decorView; field in class:PhoneWindow.PanelFeatureState
[all...]

Completed in 111 milliseconds