在我的 Android 应用程序中,我有一个比例动画。
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fillEnabled="true" android:fillAfter="true" >
<scale android:fromXScale="1.0" android:toXScale="0.0" android:fromYScale="1.0" android:toYScale="1.0" android:duration="32000" />
</set>
它工作正常。它从左到右缩放视图。但我需要从右到左缩放。所以当我修改时fromXScale="-1.0"
,动画不会发生,并且视图会立即缩放而没有动画。我的反向动画xml如下:
<set xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fillEnabled="true" android:fillAfter="true" >
<scale android:fromXScale="-1.0" android:toXScale="0.0" android:fromYScale="1.0" android:toYScale="1.0" android:duration="32000" />
</set>
如何从相反方向为视图设置动画?我的代码有什么问题?