4

ImageViewRelativeLayout:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabBar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#272727"
android:orientation="horizontal" >

<ImageView
    android:id="@+id/logoMobile"
    android:layout_width="100dp"
    android:layout_height="50dp"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:gravity="center"
    android:paddingTop="2.2dp"
    android:src="@drawable/logo" />

<ImageButton
    android:id="@+id/BtnSlide"
    android:layout_width="wrap_content"
    android:layout_height="50dp"
    android:layout_centerVertical="true"
    android:background="@null"
    android:src="@drawable/lin" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="50dp"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/BtnSlide"
    android:gravity="center"
    android:paddingLeft="30dp"
    android:text="HEADER"
    android:textAppearance="?android:attr/textAppearanceMedium" />

この xml は、アプリケーションの上部、通知バーのすぐ下にある「タブ バー」を定義します。ImageViewをその中心を中心に回転させたい。私は自分のonCreate方法でこのように試しました:

logo = (ImageView)findViewById(R.id.logoMobile);
ApplyAnimationToObject doAnimation = new ApplyAnimationToObject(logo);
doAnimation.startRotationAnimation();

そしてApplyAnimationToObjectクラス:

package Logic;

public class ApplyAnimationToObject {

final ImageView image;

public ApplyAnimationToObject(ImageView image) {
    this.image = image;
}

public void startRotationAnimation() {
    RotateAnimation anim = new RotateAnimation(0f, 350f, 15f, 15f);
    anim.setInterpolator(new LinearInterpolator());
    anim.setRepeatCount(Animation.INFINITE);
    anim.setDuration(7000);
    image.startAnimation(anim);
  }
}

ただし、ImageView は回転せず、アニメーションもまったくありません。誰でも私を助けることができますか?

編集

私はこのコードを使用してみました:

public void rotateView(View v){
    Animation rotateAnimation = new RotateAnimation(0,
            360, v.getWidth() / 2, v.getWidth() / 2);
    rotateAnimation.setDuration(10000);
    v.startAnimation(rotateAnimation);
    if(rotateAnimation.hasEnded())
        Log.i("+++++ANIMATION+++++", "ENDED!!");
    else
        Log.i("+++++++ANIMATION++++++", "NOT ENDED");
}

そして、出力ティルLogCatは、アニメーションがまだ終了していないことを示していますが、アニメーションはありませんImageView

4

3 に答える 3

3

次のコードを試してください。

     Matrix matrix=new Matrix();
     imageView.setScaleType(ScaleType.MATRIX);   //required
     matrix.postRotate((float) angle, pivX, pivY);
     imagView.setImageMatrix(matrix);
于 2012-09-27T09:04:15.823 に答える
3

別の方法も試してください:

回転させたいビューで RotateAnimation を使用し、アニメーションが fillAfter=true、duration=0、および fromDegrees=toDgrees に設定されていることを確認します。

<?xml version="1.0" encoding="utf-8"?>
<rotate
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:fromDegrees="45"
    android:toDegrees="45"
    android:pivotX="50%"
    android:pivotY="50%"
    android:duration="0"
    android:startOffset="0"
/>

コードでアニメーションを膨張させます。

Animation rotation = AnimationUtils.loadAnimation(this, R.anim.rotation);
myView.startAnimation(rotation);
于 2012-09-27T09:06:42.127 に答える
2

次のコードを使用してみてください:

public void rotateView(View v){
    Animation rotateAnimation = new RotateAnimation(0,
            360, v.getWidth() / 2, v.getWidth() / 2);
    rotateAnimation.setDuration(3000);
    v.startAnimation(rotateAnimation);
}

ローテーションを呼び出すには:

rotateView(imgView);
于 2012-09-27T09:05:48.303 に答える