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

/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
H A DSystemBarHelperTest.java125 "DEFAULT_IMMERSIVE_FLAGS should be added to decorView's systemUiVisibility",
146 "DEFAULT_IMMERSIVE_FLAGS should be removed from decorView's systemUiVisibility",
253 TestWindow(Context context, View decorView) { argument
255 mDecorView = decorView;
/frameworks/base/core/java/android/app/
H A DExitTransitionCoordinator.java128 ViewGroup decorView = getDecor();
129 if (decorView != null) {
130 TransitionManager.endTransitions(decorView);
138 if (!mIsReturning && decorView != null) {
139 decorView.suppressLayout(false);
146 final ViewGroup decorView = getDecor();
147 if (decorView != null) {
148 decorView.suppressLayout(true);
150 if (decorView != null && mExitSharedElementBundle != null &&
155 startSharedElementExit(decorView);
163 startSharedElementExit(final ViewGroup decorView) argument
[all...]
H A DEnterTransitionCoordinator.java80 final View decorView = getDecor();
81 if (decorView != null) {
82 final ViewTreeObserver viewTreeObserver = decorView.getViewTreeObserver();
91 decorView.getViewTreeObserver().removeOnPreDrawListener(this);
173 ViewGroup decorView = getDecor();
174 if (decorView != null) {
175 decorView.findNamedViews(sharedElements);
194 final View decorView = getDecor();
197 } else if (decorView == null) {
200 allReady = !decorView
486 beginTransition(ViewGroup decorView, boolean startEnterTransition, boolean startSharedElementTransition) argument
[all...]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DSystemBarHelper.java238 public void onDecorViewInstalled(View decorView) {
239 addVisibilityFlag(decorView, vis);
248 public void onDecorViewInstalled(View decorView) {
249 removeVisibilityFlag(decorView, vis);
270 final View decorView = mWindow.peekDecorView();
271 if (decorView != null) {
272 mCallback.onDecorViewInstalled(decorView);
296 void onDecorViewInstalled(View decorView); argument
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java79 public BackdropFrameRenderer(DecorView decorView, ThreadedRenderer renderer, Rect initialBounds, argument
86 onResourcesLoaded(decorView, resizingBackgroundDrawable, captionBackgroundDrawable,
109 void onResourcesLoaded(DecorView decorView, Drawable resizingBackgroundDrawable, argument
112 mDecorView = decorView;
H A DPhoneWindow.java812 if (st.decorView == null || st.refreshDecorView) {
813 if (st.decorView == null) {
814 // Initialize the panel decor, this will populate st.decorView
815 if (!initializePanelDecor(st) || (st.decorView == null))
817 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
819 st.decorView.removeAllViews();
842 st.decorView.setWindowBackground(getContext().getDrawable(
849 st.decorView.addView(st.shownPanelView, lp);
876 st.decorView.mDefaultOpacity);
887 wm.addView(st.decorView, l
3372 DecorView decorView; field in class:PhoneWindow.PanelFeatureState
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1408 final PopupDecorView decorView = new PopupDecorView(mContext);
1409 decorView.addView(contentView, MATCH_PARENT, height);
1410 decorView.setClipChildren(false);
1411 decorView.setClipToPadding(false);
1413 return decorView;
1429 final PopupDecorView decorView = mDecorView;
1430 decorView.setFitsSystemWindows(mLayoutInsetDecor);
1434 mWindowManager.addView(decorView, p);
1437 decorView.requestEnterTransition(mEnterTransition);
1884 final PopupDecorView decorView
1982 dismissImmediate(View decorView, ViewGroup contentHolder, View contentView) argument
[all...]

Completed in 682 milliseconds