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>