Searched refs:ghostView (Results 1 – 6 of 6) sorted by relevance
/frameworks/support/transition/src/main/java/androidx/transition/ |
D | GhostViewApi14.java | 46 GhostViewApi14 ghostView = getGhostView(view); in addGhost() local 47 if (ghostView == null) { in addGhost() 52 ghostView = new GhostViewApi14(view); in addGhost() 53 frameLayout.addView(ghostView); in addGhost() 55 ghostView.mReferences++; in addGhost() 56 return ghostView; in addGhost() 60 GhostViewApi14 ghostView = getGhostView(view); in removeGhost() local 61 if (ghostView != null) { in removeGhost() 62 ghostView.mReferences--; in removeGhost() 63 if (ghostView.mReferences <= 0) { in removeGhost() [all …]
|
D | GhostViewApi21.java | 73 private GhostViewApi21(@NonNull View ghostView) { in GhostViewApi21() argument 74 mGhostView = ghostView; in GhostViewApi21()
|
D | ChangeTransform.java | 390 GhostViewImpl ghostView = GhostViewUtils.addGhost(view, sceneRoot, localEndMatrix); in createGhostView() local 391 if (ghostView == null) { in createGhostView() 395 ghostView.reserveEndViewTransition((ViewGroup) startValues.values.get(PROPNAME_PARENT), in createGhostView() 403 GhostListener listener = new GhostListener(view, ghostView); in createGhostView() 515 GhostListener(View view, GhostViewImpl ghostView) { in GhostListener() argument 517 mGhostView = ghostView; in GhostListener()
|
/frameworks/base/core/java/android/view/ |
D | GhostView.java | 100 GhostView ghostView = view.mGhostView; in addGhost() local 102 if (ghostView != null) { in addGhost() 103 View oldParent = (View) ghostView.getParent(); in addGhost() 106 previousRefCount = ghostView.mReferences; in addGhost() 108 ghostView = null; in addGhost() 111 if (ghostView == null) { in addGhost() 116 ghostView = new GhostView(view); in addGhost() 117 ghostView.setMatrix(matrix); in addGhost() 121 copySize(viewGroup, ghostView); in addGhost() 122 parent.addView(ghostView); in addGhost() [all …]
|
/frameworks/base/core/java/android/transition/ |
D | ChangeTransform.java | 375 GhostView ghostView = GhostView.addGhost(view, sceneRoot, localEndMatrix); in createGhostView() local 381 GhostListener listener = new GhostListener(view, startValues.view, ghostView); in createGhostView() 474 public GhostListener(View view, View startView, GhostView ghostView) { in GhostListener() argument 477 mGhostView = ghostView; in GhostListener()
|
/frameworks/base/core/java/android/app/ |
D | ActivityTransitionCoordinator.java | 923 GhostView ghostView = GhostView.getGhost(mSharedElements.get(i)); in setGhostVisibility() local 924 if (ghostView != null) { in setGhostVisibility() 925 ghostView.setVisibility(visibility); in setGhostVisibility() 1074 GhostView ghostView = GhostView.getGhost(mView); in onPreDraw() local 1075 if (ghostView == null || !mView.isAttachedToWindow()) { in onPreDraw() 1079 ghostView.setMatrix(mMatrix); in onPreDraw()
|