0

我已经创建了动画箭头。当我按下按钮时,它会旋转 -45 度,然后返回箭头。我的问题是:我想将箭头停在 -45 度。当我再次单击该按钮时,它应该将箭头 -45 移动到 -90 等等。请帮我解决这个问题。谢谢

我在这里放置代码。

<?xml version="1.0" encoding="utf-8"?>
 <set xmlns:android="http://schemas.android.com/apk/res/android"
    android:shareInterpolator="false">

        <rotate
            android:fromDegrees="0"
            android:toDegrees="-45"
            android:toYScale="0.0"
            android:pivotX="50%"
            android:pivotY="50%"
            android:duration="400"


             />
    </set>

超空间跳跃.xml

package kh.qasim;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.Button;
import android.widget.ImageView;

public class CustomAnimationActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);
        final ImageView image = (ImageView) findViewById(R.id.imageView1);
        final Animation hyperspaceJump = AnimationUtils.loadAnimation(this, R.anim.hyperspace_jump);
        Button btn = (Button) findViewById(R.id.button1);
        btn.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View arg0) {
                // TODO Auto-generated method stub

                    image.startAnimation(hyperspaceJump);

            }
        });

    }
}

CustomAnimationActivity.java

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<ImageView android:id="@+id/imageView1" android:src="@drawable/up" android:layout_width="203dp" android:layout_height="148dp"></ImageView>
</LinearLayout>

主要的.xml

4

1 回答 1

1

首先,如果你想防止你的图像在动画之后恢复到以前的状态,你需要使用:

anim.setFillAfter(true);

此外,为了能够动态改变方向,您应该以编程方式创建动画,而不是从 XML 文件中进行:

RotateAnimation anim = new RotateAnimation(fromDegrees, toDegrees);

使用 fromDegress 和 toDegrees 变量来控制对象的开始和结束方向。例如,您可以将当前方向保存在一个名为 currentOrientation 的变量中。所以,你只需要打电话:

RotateAnimation anim = new RotateAnimation(cuurentOrientation, currentOrientation - 45);

然后像以前一样开始动画。

在动画结束时,只需将新方向存储在 currentOrientation 中。

于 2012-08-14T10:48:19.503 回答