我想制作一个翻转动画,其中一个图像将从周围增长,然后缩小到一个点。生长时会淡入,收缩时会淡出。我已经尝试了许多 xml 代码,但正是这种代码对我来说仍然不可用。
例如,这是我尝试过的一个示例。它从周围生长,但没有消失。
<scale
xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fromXScale="1.4"
android:toXScale="0.0"
android:fromYScale="1.4"
android:toYScale="0.0"
android:pivotX="50%"
android:pivotY="50%"
android:fillAfter="false"
android:duration="1000"
/>