android中有4种类型的动画 - 旋转,alpha,缩放和翻译。 我想准备弯曲的翻译动画。
有可能。?
答案 0 :(得分:9)
你使用什么Android版本?从API级别11开始,您可以使用自定义Animators,它可以轻松实现曲线转换。
如果您使用下面的版本,那么只有使用翻译动画和设置动画侦听器手动连接多个线性翻译的可能性
编辑:
示例:
View view;
animator = ValueAnimator.ofFloat(0, 1); // values from 0 to 1
animator.setDuration(5000); // 5 seconds duration from 0 to 1
animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener()
{
@Override
public void onAnimationUpdate(ValueAnimator animation) {
float value = ((Float) (animation.getAnimatedValue()))
.floatValue();
// Set translation of your view here. Position can be calculated
// out of value. This code should move the view in a half circle.
view.setTranslationX((float)(200.0 * Math.sin(value*Math.PI)));
view.setTranslationY((float)(200.0 * Math.cos(value*Math.PI)));
}
});
我希望它有效。刚复制过的&粘贴(并缩短和更改)我的某个应用程序中的代码。
答案 1 :(得分:3)
以下是我使用的动画师:
目的:沿路径“路径”移动视图“视图”
Android v21 +:
// Animates view changing x, y along path co-ordinates
ValueAnimator pathAnimator = ObjectAnimator.ofFloat(view, "x", "y", path)
Android v11 +:
// Animates a float value from 0 to 1
ValueAnimator pathAnimator = ValueAnimator.ofFloat(0.0f, 1.0f);
// This listener onAnimationUpdate will be called during every step in the animation
// Gets called every millisecond in my observation
pathAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
float[] point = new float[2];
@Override
public void onAnimationUpdate(ValueAnimator animation) {
// Gets the animated float fraction
float val = animation.getAnimatedFraction();
// Gets the point at the fractional path length
PathMeasure pathMeasure = new PathMeasure(path, true);
pathMeasure.getPosTan(pathMeasure.getLength() * val, point, null);
// Sets view location to the above point
view.setX(point[0]);
view.setY(point[1]);
}
});
答案 2 :(得分:-1)
考虑以下网络链接。它是C中的游戏。您需要隔离projectile()函数并尝试理解其中定义的变量。一旦你尝试在你自己的代码中实现它。