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.java122 "DEFAULT_IMMERSIVE_FLAGS should be added to decorView's systemUiVisibility",
141 "DEFAULT_IMMERSIVE_FLAGS should be removed from decorView's systemUiVisibility",
240 TestWindow(Context context, View decorView) { argument
242 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.java224 public void onDecorViewInstalled(View decorView) {
225 addVisibilityFlag(decorView, vis);
234 public void onDecorViewInstalled(View decorView) {
235 removeVisibilityFlag(decorView, vis);
256 final View decorView = mWindow.peekDecorView();
257 if (decorView != null) {
258 mCallback.onDecorViewInstalled(decorView);
282 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.java810 if (st.decorView == null || st.refreshDecorView) {
811 if (st.decorView == null) {
812 // Initialize the panel decor, this will populate st.decorView
813 if (!initializePanelDecor(st) || (st.decorView == null))
815 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
817 st.decorView.removeAllViews();
840 st.decorView.setWindowBackground(getContext().getDrawable(
847 st.decorView.addView(st.shownPanelView, lp);
874 st.decorView.mDefaultOpacity);
885 wm.addView(st.decorView, l
3352 DecorView decorView; field in class:PhoneWindow.PanelFeatureState
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1403 final PopupDecorView decorView = new PopupDecorView(mContext);
1404 decorView.addView(contentView, MATCH_PARENT, height);
1405 decorView.setClipChildren(false);
1406 decorView.setClipToPadding(false);
1408 return decorView;
1424 final PopupDecorView decorView = mDecorView;
1425 decorView.setFitsSystemWindows(mLayoutInsetDecor);
1429 mWindowManager.addView(decorView, p);
1432 decorView.requestEnterTransition(mEnterTransition);
1879 final PopupDecorView decorView
1977 dismissImmediate(View decorView, ViewGroup contentHolder, View contentView) argument
[all...]

Completed in 129 milliseconds