这是我的幻灯片动画。
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="@android:integer/config_longAnimTime"
android:fromYDelta="-100%p"
android:toYDelta="-30%p" />
幻灯片很好。但是视图总是最终落在屏幕的中心。上面的代码有什么问题吗?
谢谢, 拉胡
答案 0 :(得分:1)
您必须将属性fillAfter设置为“true”。
<强>代码:强>
animation.setFillEnabled(true);
animation.setFillAfter(true);
<强> XML:强>
<set
android:fillEnabled="true"
android:fillAfter="true"
xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="@android:integer/config_longAnimTime"
android:fromYDelta="-100%p"
android:toYDelta="-30%p" />
</set>
希望有所帮助!