Estoy tratando de hacer una animación simple que se repita varias veces (o infinitamente).
¡Parece que android:repeatCount
no funciona!
Aquí está mi recurso de animación 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>
Primero debe escalar la imagen de 1.0 a 1.2 en 500 ms.
Y luego vuelva a escalarlo a 1.0 en 500 ms.
Así es como lo estoy usando:
Animation firstAnimation = AnimationUtils.loadAnimation(this, R.anim.first_animation);
imgView.startAnimation(firstAnimation);
Hace un ciclo y luego termina.
Se amplía, luego se reduce y luego se detiene.
¿Cómo puedo hacer que esto funcione según lo previsto?