1

我用下面的代码在 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);
4

1 回答 1

2

宣布

   android:repeatCount="infinite" 

在你的动画.xml

然后在你的代码中

   ImageView rText = (ImageView) findViewById(R.id.ImageView01);
   Animation a = AnimationUtils.loadAnimation(this, R.anim.animation);
   rText.startAnimation(a);
于 2012-09-05T05:01:39.760 回答