I\'m trying to make simple animation that would repeat several times (or infinitely). It seems that android:repeatCount does not work! Here is my anim
android:repeatCount
you can try this code. In your code just add,
firstAnimation.setRepeatCount(5);
This will repeat the animation for a definite time
firstAnimation.setRepeatCount(Animation.INFINITE); firstAnimation.setRepeatMode(Animation.INFINITE);
This will repeat the animation indefinitely.