我的屏幕上有一个 ImageView,我想让它摇晃(向左旋转然后向右旋转)。我知道如何为 ImageView 设置动画,这是我的代码:
new RotateAnimation(20f, 50f,Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
anim.setInterpolator(new LinearInterpolator());
anim.setRepeatCount(Animation.INFINITE);
anim.setDuration(700);
// Start animating the image
final ImageView splash = (ImageView) findViewById(R.id.mobileshake);
splash.startAnimation(anim);
问题是,现在 Imageview 正在循环一个动画,但我想要循环 2 个动画(向左旋转然后向右旋转)。
我怎样才能做到这一点?
对不起,我的英语不好..