Home
last modified time | relevance | path

Searched refs:decorView (Results 1 – 3 of 3) sorted by relevance

/frameworks/ex/carousel/test/src/com/android/carouseltest/
DTaskSwitcherActivity.java203 final View decorView = getWindow().getDecorView(); in onCreate() local
218 mPortraitMode = decorView.getHeight() > decorView.getWidth(); in onCreate()
/frameworks/base/policy/src/com/android/internal/policy/impl/
DPhoneWindow.java548 if (st.decorView == null || st.refreshDecorView) { in openPanel()
549 if (st.decorView == null) { in openPanel()
551 if (!initializePanelDecor(st) || (st.decorView == null)) in openPanel()
553 } else if (st.refreshDecorView && (st.decorView.getChildCount() > 0)) { in openPanel()
555 st.decorView.removeAllViews(); in openPanel()
578 st.decorView.setWindowBackground(getContext().getResources().getDrawable( in openPanel()
582 st.decorView.addView(st.shownPanelView, lp); in openPanel()
611 st.decorView.mDefaultOpacity); in openPanel()
622 wm.addView(st.decorView, lp); in openPanel()
659 if (st.decorView != null) { in closePanel()
[all …]
/frameworks/base/core/java/android/view/
DWindow.java841 final View decorView = getDecorView(); in isOutOfBounds() local
843 || (x > (decorView.getWidth()+slop)) in isOutOfBounds()
844 || (y > (decorView.getHeight()+slop)); in isOutOfBounds()