J'essaie de faire une animation simple qui se répéterait plusieurs fois (ou à l'infini). 
Il semble que android:repeatCountcela ne fonctionne pas! 
Voici ma ressource d'animation de /res/anim/first_animation.xml:
<?xml version="1.0" encoding="utf-8"?>
<set
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false"
    android:repeatCount="infinite"
    >
    <scale
        android:interpolator="@android:anim/decelerate_interpolator"
        android:duration="500"
        android:fromXScale="1.0"
        android:fromYScale="1.0"
        android:toXScale="1.2"
        android:toYScale="1.2"
        android:pivotX="50%"
        android:pivotY="50%"
        android:fillAfter="false" />
    <scale
        android:interpolator="@android:anim/accelerate_interpolator"
        android:startOffset="500"
        android:duration="500"
        android:fromXScale="1.2"
        android:fromYScale="1.2"
        android:toXScale="1.0"
        android:toYScale="1.0"
        android:pivotX="50%"
        android:pivotY="50%"
        android:fillAfter="false" />
</set>
Tout d'abord, il doit redimensionner l'image de 1,0 à 1,2 taille en 500 ms. 
Et puis redimensionnez-le à 1,0 en 500 ms. 
Voici comment je l'utilise:
Animation firstAnimation = AnimationUtils.loadAnimation(this, R.anim.first_animation);
imgView.startAnimation(firstAnimation);
Il fait un cycle puis se termine. 
Il augmente, puis diminue et s'arrête. 
Comment puis-je faire en sorte que cela fonctionne comme prévu?