Searched defs:toY (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/editor/
H A DEditorAnimator.java203 float toY, int startDelay, int duration) {
207 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY);
202 translateViews(List<Animator> animators, List<View> views, float fromY, float toY, int startDelay, int duration) argument
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageShow.java687 int fromY, int toY, int delay) {
688 if (fromX == toX && fromY == toY) {
698 mAnimatorTranslateY = ValueAnimator.ofInt(fromY, toY);
686 startAnimTranslation(int fromX, int toX, int fromY, int toY, int delay) argument
/packages/apps/Launcher2/src/com/android/launcher2/
H A DDragLayer.java496 int toY = coord[1];
503 toY += Math.round(scale * tv.getPaddingTop());
504 toY -= dragView.getMeasuredHeight() * (1 - scale) / 2;
508 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2;
509 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2;
513 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
529 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale,
534 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY,
539 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY
533 animateViewIntoPosition(final DragView view, final int fromX, final int fromY, final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY, float finalScaleX, float finalScaleY, Runnable onCompleteRunnable, int animationEndStyle, int duration, View anchorView) argument
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DDragLayer.java574 int toY = coord[1];
585 toY += Math.round(toScale * tv.getPaddingTop());
586 toY -= dragView.getMeasuredHeight() * (1 - toScale) / 2;
588 toY -= Math.round(toScale * dragView.getDragVisualizeOffset().y);
594 toY += Math.round(scale * (child.getPaddingTop() - dragView.getDragRegionTop()));
595 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2;
596 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2;
600 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2;
616 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale,
621 final int toX, final int toY, floa
620 animateViewIntoPosition(final DragView view, final int fromX, final int fromY, final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY, float finalScaleX, float finalScaleY, Runnable onCompleteRunnable, int animationEndStyle, int duration, View anchorView) argument
[all...]

Completed in 122 milliseconds