Home
last modified time | relevance | path

Searched refs:ghostView (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/
DGhostView.java105 GhostView ghostView = view.mGhostView; in addGhost() local
107 if (ghostView != null) { in addGhost()
108 View oldParent = (View) ghostView.getParent(); in addGhost()
111 previousRefCount = ghostView.mReferences; in addGhost()
113 ghostView = null; in addGhost()
116 if (ghostView == null) { in addGhost()
121 ghostView = new GhostView(view); in addGhost()
122 ghostView.setMatrix(matrix); in addGhost()
126 copySize(viewGroup, ghostView); in addGhost()
127 parent.addView(ghostView); in addGhost()
[all …]
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DGhostedViewTransitionAnimatorController.kt83 private var ghostView: GhostView? = null variable in com.android.systemui.animation.GhostedViewTransitionAnimatorController
250 ghostView = GhostView.addGhost(ghostedView, transitionContainer) in onTransitionAnimationStart()
258 (ghostView?.parent?.parent as? ViewGroup)?.let { in onTransitionAnimationStart()
263 val matrix = ghostView?.animationMatrix ?: Matrix.IDENTITY_MATRIX in onTransitionAnimationStart()
274 val ghostView = this.ghostView ?: return in onTransitionAnimationProgress() constant
278 if (ghostView.visibility == View.VISIBLE) { in onTransitionAnimationProgress()
281 ghostView.visibility = View.INVISIBLE in onTransitionAnimationProgress()
294 if (ghostView.visibility == View.INVISIBLE) { in onTransitionAnimationProgress()
295 ghostView.visibility = View.VISIBLE in onTransitionAnimationProgress()
326 ghostView.animationMatrix = ghostViewMatrix in onTransitionAnimationProgress()
[all …]
/frameworks/base/core/java/android/transition/
DChangeTransform.java379 GhostView ghostView = GhostView.addGhost(view, sceneRoot, localEndMatrix); in createGhostView() local
385 GhostListener listener = new GhostListener(view, startValues.view, ghostView); in createGhostView()
478 public GhostListener(View view, View startView, GhostView ghostView) { in GhostListener() argument
481 mGhostView = ghostView; in GhostListener()
/frameworks/base/core/java/android/app/
DActivityTransitionCoordinator.java929 GhostView ghostView = GhostView.getGhost(mSharedElements.get(i)); in setGhostVisibility() local
930 if (ghostView != null) { in setGhostVisibility()
931 ghostView.setVisibility(visibility); in setGhostVisibility()
1080 GhostView ghostView = GhostView.getGhost(mView); in onPreDraw() local
1081 if (ghostView == null || !mView.isAttachedToWindow()) { in onPreDraw()
1085 ghostView.setMatrix(mMatrix); in onPreDraw()