Home | History | Annotate | Download | only in app

Lines Matching refs:decor

796         ViewGroup decor = getDecor();
797 if (decor != null) {
804 GhostView.addGhost(view, decor, tempMatrix);
806 if (moveWithParent && !isInTransitionGroup(parent, decor)) {
807 GhostViewListeners listener = new GhostViewListeners(view, parent, decor);
819 public static boolean isInTransitionGroup(ViewParent viewParent, ViewGroup decor) {
820 if (viewParent == decor || !(viewParent instanceof ViewGroup)) {
827 return isInTransitionGroup(parent.getParent(), decor);
843 ViewGroup decor = getDecor();
844 if (decor != null) {
845 ViewGroupOverlay overlay = decor.getOverlay();
894 final View decor = getDecor();
895 if (decor != null) {
896 final ViewRootImpl viewRoot = decor.getViewRootImpl();
904 final View decor = getDecor();
905 final ViewRootImpl viewRoot = decor == null ? null : decor.getViewRootImpl();
951 public GhostViewListeners(View view, View parent, ViewGroup decor) {
954 mDecor = decor;