我试图通过“ V”(上下)将图像从右向左移动。这是一张描述我所追求的图像:
我尝试使用ObjectAnimator
和AnimatorSet
,但没有得到我希望得到的东西。而且很难理解为什么我还要其他东西。
这是我当前的代码:
/**
* translateLeft = -160dp
* translateDown = 25dp
* translateUp = -25dp
*/
private void vShapedAnimation () {
AnimatorSet upDownSet = new AnimatorSet();
AnimatorSet downUpSet = new AnimatorSet();
AnimatorSet finalSet = new AnimatorSet();
ObjectAnimator rightToLeft = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_X, this.getResources().getDimensionPixelOffset(R.dimen.translateLeft) / 2);
ObjectAnimator upDown = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_Y, this.getResources().getDimensionPixelOffset(R.dimen.translateDown));
ObjectAnimator downUp = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_Y, this.getResources().getDimensionPixelOffset(R.dimen.translateUp));
upDownSet.playTogether(
rightToLeft,
upDown
);
downUpSet.playTogether(
rightToLeft,
downUp
);
finalSet.playSequentially(
upDownSet,
downUpSet
);
finalSet.setDuration(300);
finalSet.addListener(new Animator.AnimatorListener() {
@Override
public void onAnimationStart(Animator animation) {
}
@Override
public void onAnimationEnd(Animator animation) {
animation.removeListener(this);
animation.setDuration(0);
animation.setInterpolator(new ReverseInterpolator());
animation.start();
}
@Override
public void onAnimationCancel(Animator animation) {
}
@Override
public void onAnimationRepeat(Animator animation) {
}
});
finalSet.start();
}
ReverseInterpolator
中的AnimatorListener
来自这里:
我打算同时旋转图像一点。如果“ V”可以向内弯曲一点,那将是完美的。但是,如果起初有人可以帮助我制作基本动画,将不胜感激。
答案 0 :(得分:0)
ObjectAnimator
有一段奇怪的时刻,但我终于掌握了(至少足以解决我自己的问题)。
要注意的是,在一系列动画中,最好始终指示开始位置和结束位置。在我写的问题中,三个ObjectAnimators
仅被赋予结尾位置。这使动画从怪异的地方开始。
使用伪代码示例,如果要从A转到C并经过B,则需要这样写下来:
ObjectAnimator AtoB_X = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_X, A.x, B.x - A.x);
ObjectAnimator BtoC_X = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_X, B.x - A.x, C.x - A.x);
ObjectAnimator AtoB_Y = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_Y, A.y, B.y - A.y);
ObjectAnimator BtoC_Y = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_Y, B.y - A.y, C.y - A.y);
重要提示:始终使用dp
个测量值。切勿使用px
测量。这就是为什么在我的代码中使用this.getResources().getDimensionPixelOffset()
的原因。它将dp
值转换为适合每种屏幕分辨率的px
值。
现在,对于我的工作代码:
private void vShapedAnimation() {
AnimatorSet upDownSet = new AnimatorSet();
AnimatorSet downUpSet = new AnimatorSet();
AnimatorSet finalSet = new AnimatorSet();
ObjectAnimator rightToHalf = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_X, 0, this.getResources().getDimensionPixelOffset(R.dimen.translateLeft) / 2);
ObjectAnimator halfToLeft = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_X, this.getResources().getDimensionPixelOffset(R.dimen.translateLeft) / 2, this.getResources().getDimensionPixelOffset(R.dimen.translateLeft));
ObjectAnimator upDown = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_Y, 0, this.getResources().getDimensionPixelOffset(R.dimen.translateDown));
ObjectAnimator downUp = ObjectAnimator.ofFloat(this.imageView, View.TRANSLATION_Y, this.getResources().getDimensionPixelOffset(R.dimen.translateDown), 0);
upDownSet.playTogether(
rightToHalf,
upDown
);
downUpSet.playTogether(
halfToLeft,
downUp
);
finalSet.playSequentially(
upDownSet,
downUpSet
);
finalSet.setInterpolator(new LinearInterpolator());
finalSet.setDuration(300);
finalSet.start();
}