Searched refs:decorView (Results 1 - 18 of 18) sorted by relevance

/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...]
H A DActivityOptions.java673 final View decorView = window.getDecorView();
674 if (decorView == null) {
695 final View decorView = window.getDecorView();
696 if (decorView == null) {
700 decorView.getTag(com.android.internal.R.id.cross_task_transition);
703 decorView.setTagInternal(com.android.internal.R.id.cross_task_transition, null);
704 TransitionManager.endTransitions((ViewGroup) decorView);
707 decorView.setVisibility(View.VISIBLE);
1433 View decorView = mWindow.getDecorView();
1434 if (decorView !
[all...]
H A DActivityTransitionCoordinator.java233 ViewGroup decorView = getDecor();
234 if (decorView != null) {
235 decorView.captureTransitioningViews(mTransitioningViews);
473 ViewGroup decorView = getDecor();
474 if (decorView != null) {
475 decorView.findNamedViews(sharedElements);
632 final View decorView = getDecor();
633 if (decorView != null) {
634 OneShotPreDrawListener.add(decorView, () -> {
680 ViewGroup decorView
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DUserSwitchingDialog.java96 final View decorView = getWindow().getDecorView();
97 if (decorView != null) {
98 decorView.getViewTreeObserver().addOnWindowShownListener(this);
118 final View decorView = getWindow().getDecorView();
119 if (decorView != null) {
120 decorView.getViewTreeObserver().removeOnWindowShownListener(this);
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
H A DMainActivity.java19 View decorView = getWindow().getDecorView();
22 decorView.setSystemUiVisibility(uiOptions);
/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/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
H A DSetupWizardListLayoutTest.java126 View decorView = layout.findViewById(R.id.suw_layout_decor);
130 assertNotNull("@id/suw_layout_decor_view should not be null", decorView);
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;
H A DSetupWizardLayoutTest.java235 View decorView = layout.findViewById(R.id.suw_layout_decor);
238 assertNotNull("@id/suw_layout_decor_view should not be null", decorView);
/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.java811 if (st.decorView == null || st.refreshDecorView) {
812 if (st.decorView == null) {
813 // Initialize the panel decor, this will populate st.decorView
814 if (!initializePanelDecor(st) || (st.decorView == null))
816 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
818 st.decorView.removeAllViews();
841 st.decorView.setWindowBackground(getContext().getDrawable(
848 st.decorView.addView(st.shownPanelView, lp);
875 st.decorView.mDefaultOpacity);
886 wm.addView(st.decorView, l
3359 DecorView decorView; field in class:PhoneWindow.PanelFeatureState
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1407 final PopupDecorView decorView = new PopupDecorView(mContext);
1408 decorView.addView(contentView, MATCH_PARENT, height);
1409 decorView.setClipChildren(false);
1410 decorView.setClipToPadding(false);
1412 return decorView;
1428 final PopupDecorView decorView = mDecorView;
1429 decorView.setFitsSystemWindows(mLayoutInsetDecor);
1433 mWindowManager.addView(decorView, p);
1436 decorView.requestEnterTransition(mEnterTransition);
1883 final PopupDecorView decorView
1981 dismissImmediate(View decorView, ViewGroup contentHolder, View contentView) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindow.java871 final View decorView = getDecorView();
872 if (decorView == null) {
880 decorView.addFrameMetricsListener(this, listener, handler);
887 final View decorView = getDecorView();
888 if (decorView != null) {
1294 final View decorView = getDecorView();
1296 || (x > (decorView.getWidth()+slop))
1297 || (y > (decorView.getHeight()+slop));
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DDataBindingUtil.java277 View decorView = activity.getWindow().getDecorView();
278 ViewGroup contentView = (ViewGroup) decorView.findViewById(android.R.id.content);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatDelegateImplV9.java1131 if (st.decorView == null || st.refreshDecorView) {
1132 if (st.decorView == null) {
1133 // Initialize the panel decor, this will populate st.decorView
1134 if (!initializePanelDecor(st) || (st.decorView == null))
1136 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) {
1138 st.decorView.removeAllViews();
1152 st.decorView.setBackgroundResource(backgroundResId);
1158 st.decorView.addView(st.shownPanelView, lp);
1188 wm.addView(st.decorView, lp);
1194 st.decorView
[all...]
H A DAppCompatActivity.java557 final View decorView = currentWindow.getDecorView();
558 if (decorView.dispatchKeyShortcutEvent(event)) {
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteControllerDialog.java462 View decorView = getWindow().getDecorView();
463 mDialogContentWidth = width - decorView.getPaddingLeft() - decorView.getPaddingRight();
616 View decorView = getWindow().getDecorView();
617 decorView.measure(
644 decorView.getWindowVisibleDisplayFrame(visibleRect);

Completed in 419 milliseconds