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