Home
last modified time | relevance | path

Searched refs:toY (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
DDragLayer.java470 int toY = coord[1]; in animateViewIntoPosition() local
477 toY += Math.round(scale * tv.getPaddingTop()); in animateViewIntoPosition()
478 toY -= dragView.getMeasuredHeight() * (1 - scale) / 2; in animateViewIntoPosition()
482 toY -= scale * Workspace.DRAG_BITMAP_PADDING / 2; in animateViewIntoPosition()
483 toY -= (1 - scale) * dragView.getMeasuredHeight() / 2; in animateViewIntoPosition()
487 toY -= (Math.round(scale * (dragView.getHeight() - child.getMeasuredHeight()))) / 2; in animateViewIntoPosition()
503 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale, in animateViewIntoPosition()
508 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY, in animateViewIntoPosition() argument
513 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight()); in animateViewIntoPosition()
/packages/apps/Email/src/com/android/email/activity/
DBannerController.java93 private void slideBanner(int toY) { in slideBanner() argument
99 PropertyValuesHolder.ofInt(PROP_SET_BANNER_Y, getBannerY(), toY) }; in slideBanner()
/packages/apps/Contacts/src/com/android/contacts/editor/
DEditorAnimator.java189 float toY, int startDelay, int duration) { in translateViews() argument
193 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY); in translateViews()