• Home
  • Raw
  • Download

Lines Matching refs:dragView

492     public void animateViewIntoPosition(DragView dragView, final View child) {  in animateViewIntoPosition()  argument
493 animateViewIntoPosition(dragView, child, null, null); in animateViewIntoPosition()
496 public void animateViewIntoPosition(DragView dragView, final int[] pos, float alpha, in animateViewIntoPosition() argument
500 getViewRectRelativeToSelf(dragView, r); in animateViewIntoPosition()
504 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY, in animateViewIntoPosition()
508 public void animateViewIntoPosition(DragView dragView, final View child, in animateViewIntoPosition() argument
510 animateViewIntoPosition(dragView, child, -1, onFinishAnimationRunnable, anchorView); in animateViewIntoPosition()
513 public void animateViewIntoPosition(DragView dragView, final View child, int duration, in animateViewIntoPosition() argument
520 getViewRectRelativeToSelf(dragView, r); in animateViewIntoPosition()
540 toScale = scale / dragView.getIntrinsicIconScaleFactor(); in animateViewIntoPosition()
546 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2; in animateViewIntoPosition()
547 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2; in animateViewIntoPosition()
550 toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop())); in animateViewIntoPosition()
552 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2; in animateViewIntoPosition()
554 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2; in animateViewIntoPosition()
556 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2; in animateViewIntoPosition()
557 toX -= (Math.round(scale * (dragView.getMeasuredWidth() in animateViewIntoPosition()
572 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale, in animateViewIntoPosition()