Home | History | Annotate | Download | only in launcher3

Lines Matching defs:dragView

2582         public FlingAlongVectorAnimatorUpdateListener(View dragView, PointF vel, Rect from,
2584 mDragView = dragView;
2611 private Runnable createPostDeleteAnimationRunnable(final View dragView) {
2615 int dragViewIndex = indexOfChild(dragView);
2690 removeView(dragView);
2691 onRemoveView(dragView, true);
2726 final View dragView = mDragView;
2727 from.left = (int) dragView.getTranslationX();
2728 from.top = (int) dragView.getTranslationY();
2729 AnimatorUpdateListener updateCb = new FlingAlongVectorAnimatorUpdateListener(dragView, vel,
2732 final Runnable onAnimationEndRunnable = createPostDeleteAnimationRunnable(dragView);
2767 final View dragView = mDragView;
2777 ObjectAnimator.ofFloat(dragView, "scaleX", toScale),
2778 ObjectAnimator.ofFloat(dragView, "scaleY", toScale));
2784 ObjectAnimator.ofFloat(dragView, "alpha", toAlpha));
2787 final Runnable onAnimationEndRunnable = createPostDeleteAnimationRunnable(dragView);