我用下面的代码在 Android 中尝试了重复动画,但没有这样做。
Animation a = AnimationUtils.loadAnimation(this, R.anim.animation);
a.reset();
ImageView rText = (ImageView) findViewById(R.id.ImageView01);
a.setRepeatMode(Animation.RESTART);
a.setRepeatCount(Animation.INFINITE);
rText.startAnimation(a);