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>

hyperspace_jump.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>

main.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 に答える