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/
DGhostedViewLaunchAnimatorController.kt75 private var ghostView: GhostView? = null variable in com.android.systemui.animation.GhostedViewLaunchAnimatorController
227 ghostView = GhostView.addGhost(ghostedView, launchContainer) in onLaunchAnimationStart()
229 val matrix = ghostView?.animationMatrix ?: Matrix.IDENTITY_MATRIX in onLaunchAnimationStart()
240 val ghostView = this.ghostView ?: return in onLaunchAnimationProgress() constant
244 if (ghostView.visibility == View.VISIBLE) { in onLaunchAnimationProgress()
247 ghostView.visibility = View.INVISIBLE in onLaunchAnimationProgress()
260 if (ghostView.visibility == View.INVISIBLE) { in onLaunchAnimationProgress()
261 ghostView.visibility = View.VISIBLE in onLaunchAnimationProgress()
292 ghostView.animationMatrix = ghostViewMatrix in onLaunchAnimationProgress()
313 if (ghostView == null) { in onLaunchAnimationEnd()
/frameworks/base/core/java/android/transition/
DChangeTransform.java376 GhostView ghostView = GhostView.addGhost(view, sceneRoot, localEndMatrix); in createGhostView() local
382 GhostListener listener = new GhostListener(view, startValues.view, ghostView); in createGhostView()
475 public GhostListener(View view, View startView, GhostView ghostView) { in GhostListener() argument
478 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()