Lines Matching refs:dragView

454     public void animateViewIntoPosition(DragView dragView, final View child) {  in animateViewIntoPosition()  argument
455 animateViewIntoPosition(dragView, child, null); in animateViewIntoPosition()
458 public void animateViewIntoPosition(DragView dragView, final int[] pos, float alpha, in animateViewIntoPosition() argument
462 getViewRectRelativeToSelf(dragView, r); in animateViewIntoPosition()
466 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY, in animateViewIntoPosition()
470 public void animateViewIntoPosition(DragView dragView, final View child, in animateViewIntoPosition() argument
472 animateViewIntoPosition(dragView, child, -1, onFinishAnimationRunnable, null); in animateViewIntoPosition()
475 public void animateViewIntoPosition(DragView dragView, final View child, int duration, in animateViewIntoPosition() argument
482 getViewRectRelativeToSelf(dragView, r); in animateViewIntoPosition()
504 toY -= dragView.getMeasuredHeight() * (1 - scale) / 2; in animateViewIntoPosition()
505 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2; in animateViewIntoPosition()
509 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2; in animateViewIntoPosition()
511 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2; in animateViewIntoPosition()
513 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2; in animateViewIntoPosition()
514 toX -= (Math.round(scale * (dragView.getMeasuredWidth() in animateViewIntoPosition()
529 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale, in animateViewIntoPosition()