我正在创建一个应用程序,我包括一个动画。这是向右旋转,我正在寻找的是顺时针旋转,向左旋转并作为钟摆(全部具有相同的速度)返回起点,只有一次。 这是动画:
<?xml version="1.0" encoding="UTF-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="500"
android:fromDegrees="0"
android:interpolator="@android:anim/linear_interpolator"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="50"
android:fillEnabled="true"
android:fillAfter="true"
/>
此动画在上一个动画结束时开始:
AnimationListener animationInListener = new AnimationListener(){
@Override
public void onAnimationEnd(Animation animation) {
tv2.setText("GAME OVER");
count=count-count;
duracionAnim=2000;
tv1.startAnimation(animationRotateR);
tv1.startAnimation(animationRotateL);
}
我尝试用android创建另一个动画:fromDegrees =&#34; 50&#34;和android:toDegrees =&#34; 0&#34;,但不是如何让它一个接一个地工作。
我搜索但没有找到任何东西。有人可以帮帮我吗?