Help please, you need to make an animation, so that the text decreases, and then increases again and fix it.

Decrease:

<?xml version="1.0" encoding="utf-8"?> <set android:duration="500" xmlns:android="http://schemas.android.com/apk/res/android"> <scale android:fromXScale="1.0" android:toXScale="0.7" android:fromYScale="1.0" android:toYScale="0.7" android:pivotX="50%" android:pivotY="50%"> </scale> </set> 

Increase:

  <?xml version="1.0" encoding="utf-8"?> <set android:duration="500" xmlns:android="http://schemas.android.com/apk/res/android"> <scale android:fromXScale="0.7" android:toXScale="1.0" android:fromYScale="0.7" android:toYScale="1.0" android:pivotX="50%" android:pivotY="50%"> </scale> </set> 

    1 answer 1

    Use this android:repeatMode="restart" or android:repeatMode="reverse"

    If you want her to drive back and forth, then use the reverse mode, and then only 1 animation will start, then it will go in the opposite direction and so on to infinity