0

我在应用动画时遇到问题

给定以下动画代码

  <translate xmlns:android="http://schemas.android.com/apk/res/android"
        android:duration="1000"
        android:fromXDelta="0"
        android:interpolator="@anim/cycle_10"
        android:toXDelta="10" />

启动应用程序后,此动画只能应用一次

public void onClick{
button.setAnimation(shake);
}

如何多次应用此动画?

4

2 回答 2

0

add following lines in animation xml-

  android:repeatMode="reverse"
  android:repeatCount="infinite"
于 2013-08-27T08:53:31.670 回答
0

View.startAnimation(动画)?

于 2013-08-27T08:50:36.033 回答