• Home
  • Raw
  • Download

Lines Matching refs:dragView

554     public void animateViewIntoPosition(DragView dragView, final int[] pos, float alpha,  in animateViewIntoPosition()  argument
558 getViewRectRelativeToSelf(dragView, r); in animateViewIntoPosition()
562 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY, in animateViewIntoPosition()
566 public void animateViewIntoPosition(DragView dragView, final View child, in animateViewIntoPosition() argument
568 animateViewIntoPosition(dragView, child, -1, onFinishAnimationRunnable, anchorView); in animateViewIntoPosition()
571 public void animateViewIntoPosition(DragView dragView, final View child, int duration, in animateViewIntoPosition() argument
578 getViewRectRelativeToSelf(dragView, r); in animateViewIntoPosition()
598 toScale = scale / dragView.getIntrinsicIconScaleFactor(); in animateViewIntoPosition()
604 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2; in animateViewIntoPosition()
605 if (dragView.getDragVisualizeOffset() != null) { in animateViewIntoPosition()
606 toY -= Math.round(toScale * dragView.getDragVisualizeOffset().y); in animateViewIntoPosition()
609 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2; in animateViewIntoPosition()
612 toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop())); in animateViewIntoPosition()
614 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2; in animateViewIntoPosition()
616 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2; in animateViewIntoPosition()
618 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2; in animateViewIntoPosition()
619 toX -= (Math.round(scale * (dragView.getMeasuredWidth() in animateViewIntoPosition()
634 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale, in animateViewIntoPosition()