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

/frameworks/opt/setupwizard/library/test/src/com/android/setupwizardlib/test/
H A DSystemBarHelperTest.java103 "DEFAULT_IMMERSIVE_FLAGS should be added to decorView's systemUiVisibility",
121 "DEFAULT_IMMERSIVE_FLAGS should be removed from decorView's systemUiVisibility",
215 public TestWindow(Context context, View decorView) { argument
217 mDecorView = decorView;
/frameworks/base/core/java/android/app/
H A DExitTransitionCoordinator.java132 ViewGroup decorView = getDecor();
133 if (!mIsReturning && decorView != null) {
134 decorView.suppressLayout(false);
141 final ViewGroup decorView = getDecor();
142 if (decorView != null) {
143 decorView.suppressLayout(true);
145 if (decorView != null && mExitSharedElementBundle != null &&
150 startSharedElementExit(decorView);
158 private void startSharedElementExit(final ViewGroup decorView) { argument
171 decorView
[all...]
H A DEnterTransitionCoordinator.java75 final View decorView = getDecor();
76 if (decorView != null) {
77 decorView.getViewTreeObserver().addOnPreDrawListener(
82 decorView.getViewTreeObserver().removeOnPreDrawListener(this);
166 ViewGroup decorView = getDecor();
167 if (decorView != null) {
168 decorView.findNamedViews(sharedElements);
187 final View decorView = getDecor();
190 } else if (decorView == null) {
193 allReady = !decorView
491 beginTransition(ViewGroup decorView, boolean startEnterTransition, boolean startSharedElementTransition) argument
[all...]
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
H A DSystemBarHelper.java226 public void onDecorViewInstalled(View decorView) {
227 addVisibilityFlag(decorView, vis);
236 public void onDecorViewInstalled(View decorView) {
237 removeVisibilityFlag(decorView, vis);
258 final View decorView = mWindow.peekDecorView();
259 if (decorView != null) {
260 mCallback.onDecorViewInstalled(decorView);
284 void onDecorViewInstalled(View decorView); argument
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java78 public BackdropFrameRenderer(DecorView decorView, ThreadedRenderer renderer, Rect initialBounds, argument
85 onResourcesLoaded(decorView, resizingBackgroundDrawable, captionBackgroundDrawable,
108 void onResourcesLoaded(DecorView decorView, Drawable resizingBackgroundDrawable, argument
111 mDecorView = decorView;
H A DPhoneWindow.java790 if (st.decorView == null || st.refreshDecorView) {
791 if (st.decorView == null) {
792 // Initialize the panel decor, this will populate st.decorView
793 if (!initializePanelDecor(st) || (st.decorView == null))
795 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
797 st.decorView.removeAllViews();
820 st.decorView.setWindowBackground(getContext().getDrawable(
827 st.decorView.addView(st.shownPanelView, lp);
854 st.decorView.mDefaultOpacity);
865 wm.addView(st.decorView, l
3294 DecorView decorView; field in class:PhoneWindow.PanelFeatureState
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1352 final PopupDecorView decorView = new PopupDecorView(mContext);
1353 decorView.addView(contentView, MATCH_PARENT, height);
1354 decorView.setClipChildren(false);
1355 decorView.setClipToPadding(false);
1357 return decorView;
1373 final PopupDecorView decorView = mDecorView;
1374 decorView.setFitsSystemWindows(mLayoutInsetDecor);
1378 mWindowManager.addView(decorView, p);
1381 decorView.requestEnterTransition(mEnterTransition);
1814 final PopupDecorView decorView
1914 dismissImmediate(View decorView, ViewGroup contentHolder, View contentView) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDelegateImplV9.java1130 if (st.decorView == null || st.refreshDecorView) {
1131 if (st.decorView == null) {
1132 // Initialize the panel decor, this will populate st.decorView
1133 if (!initializePanelDecor(st) || (st.decorView == null))
1135 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
1137 st.decorView.removeAllViews();
1151 st.decorView.setBackgroundResource(backgroundResId);
1157 st.decorView.addView(st.shownPanelView, lp);
1187 wm.addView(st.decorView, lp);
1193 st.decorView
1893 ViewGroup decorView; field in class:AppCompatDelegateImplV9.PanelFeatureState
[all...]

Completed in 260 milliseconds