HomeSort by relevance Sort by last modified time
    Searched refs:ghostView (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/view/
GhostView.java 27 * here using its render node. When the GhostView is set to INVISIBLE, the View it is
28 * shadowing will become VISIBLE and when the GhostView becomes VISIBLE, the shadowed
32 public class GhostView extends View {
37 private GhostView(View view) {
100 public static GhostView addGhost(View view, ViewGroup viewGroup, Matrix matrix) {
106 GhostView ghostView = view.mGhostView;
108 if (ghostView != null) {
109 View oldParent = (View) ghostView.getParent();
112 previousRefCount = ghostView.mReferences
    [all...]
  /frameworks/base/core/java/android/transition/
ChangeTransform.java 27 import android.view.GhostView;
337 GhostView ghostView = GhostView.addGhost(view, sceneRoot, localEndMatrix);
343 GhostListener listener = new GhostListener(view, ghostView, endMatrix);
433 private GhostView mGhostView;
436 public GhostListener(View view, GhostView ghostView, Matrix endMatrix) {
438 mGhostView = ghostView;
445 GhostView.removeGhost(mView)
    [all...]
  /frameworks/base/core/java/android/app/
ActivityTransitionCoordinator.java 29 import android.view.GhostView;
716 GhostView.addGhost(view, decor);
761 GhostView.removeGhost(sharedElement);
769 GhostView ghostView = GhostView.getGhost(mSharedElements.get(i));
770 if (ghostView != null) {
771 ghostView.setVisibility(visibility);
    [all...]

Completed in 139 milliseconds