将动画从位置Y转换为屏幕顶部

时间:2016-09-14 14:08:48

标签: android android-animation translate-animation

我有多个可以选择的视图。当其中一个被选中时,我希望我的新视图首先定位到与所选视图相同的位置,并将其移动到我的屏幕顶部。我怎样才能做到这一点?所选项目的位置各不相同。

// Selected item
int[] location = new int[2];
item.getLocationOnScreen(location);
int positionY = location[1];

// Move the view I want to move to the position of selected item
viewToMove.setTranslationY(positionY);

// Create and start animation
Animation slideUp = new TranslateAnimation(viewToMove.getTranslationX(), viewToMove.getTranslationX(), positionY, -positionY);
slideUp.setDuration(1000);
slideUp.setFillEnabled(true);
slideUp.setFillAfter(true);
viewToMove.startAnimation(slideUp);

1 个答案:

答案 0 :(得分:3)

使用ViewPropertyAnimator很简单:

viewToMove.animate().translationX(...).translationY(0).setDuration(1000); 

translationY(0)是Y轴的顶部,和 在translationX(...)处,您可以填写希望视图在X轴上移动到的坐标。