Home | History | Annotate | Download | only in dragndrop

Lines Matching defs:toY

286         int toY = coord[1];
297 toY += Math.round(toScale * tv.getPaddingTop());
298 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2;
300 toY -= Math.round(toScale * dragView.getDragVisualizeOffset().y);
306 toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop()));
307 toY -= scale * dragView.getBlurSizeOutline() / 2;
308 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2;
312 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
321 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale,
326 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY,
331 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight());