Home | History | Annotate | Download | only in launcher2

Lines Matching refs:DragView

67     private DragView mDropView = null;
425 public void animateViewIntoPosition(DragView dragView, final View child) {
426 animateViewIntoPosition(dragView, child, null);
429 public void animateViewIntoPosition(DragView dragView, final int[] pos, float alpha,
433 getViewRectRelativeToSelf(dragView, r);
437 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
441 public void animateViewIntoPosition(DragView dragView, final View child,
443 animateViewIntoPosition(dragView, child, -1, onFinishAnimationRunnable, null);
446 public void animateViewIntoPosition(DragView dragView, final View child, int duration,
454 getViewRectRelativeToSelf(dragView, r);
472 toY -= dragView.getMeasuredHeight() * (1 - scale) / 2;
473 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2;
478 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2;
480 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
481 toX -= (Math.round(scale * (dragView.getMeasuredWidth()
496 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale,
500 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY,
532 public void animateView(final DragView view, final Rect from, final Rect to,
601 public void animateView(final DragView view, AnimatorUpdateListener updateCb, int duration,