摇动画无法正常工作

时间:2015-07-20 12:53:43

标签: android

这是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);

1 个答案:

答案 0 :(得分:4)

android:interpolator="@anim/cycle_7"行替换为:

android:repeatCount="7"
android:repeatMode="reverse"

这应该可以解决问题。 repeatCount设置动画将执行的周期数,repeatMode可以设置two valuesrepeatrestart