这只是我未解决的问题的延续,可在此处找到:Animate ImageView
目前,我设法使用
移动图像视图<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_interpolator">
<translate
android:fromXDelta="-100%p"
android:toXDelta="0%"
android:duration="2000"/>
</set>
但我想要完成的是图像应该从左到右加速,当它们到达结束时,它们应该再次出现在活动上。
真正感谢任何帮助和建议。感谢。
答案 0 :(得分:1)
重复播放动画:
android:repeatCount="-1"
如果你想从右到左重新出现imageView:
android:repeatMode="reverse"
答案 1 :(得分:0)
您应该使用SurfaceView
而不是移动ImageViews
。