这是xml代码。
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="0" android:toXDelta="10" android:duration="1000"
android:interpolator="@anim/cycle_7" />
这是cycle_7.xml文件......
<?xml version="1.0" encoding="utf-8"?>
<cycleInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:cycles="7" />
这就是我使用它的方式。
final Animation animAlpha2 = AnimationUtils.loadAnimation(this, R.anim.anim);
v.startAnimtion(anumAlpha2);
答案 0 :(得分:4)
将android:interpolator="@anim/cycle_7"
行替换为:
android:repeatCount="7"
android:repeatMode="reverse"
这应该可以解决问题。 repeatCount
设置动画将执行的周期数,repeatMode
可以设置two values,repeat
和restart
。