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" 

animation.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 に答える