Android动画围绕其中心点旋转图像

时间:2014-04-04 11:52:16

标签: android android-animation rotateanimation

我正在努力学习android xml动画。我想围绕其中心点逆时针旋转图像。

这是我的动画xml:

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

<rotate
    android:duration="1000"
    android:repeatCount="infinite"
    android:repeatMode="restart"
    android:fromDegrees="360"
    android:toDegrees="0"
    android:pivotX="0.5"
    android:pivotY="0.5"         
    android:interpolator="@android:anim/linear_interpolator"        
   />

此当前动画没有围绕点x = 0旋转图像; y = 0。

2 个答案:

答案 0 :(得分:3)

代表@Mahfa回答

您必须将pivotX和pivotY设置为“50%”

重要的部分是百分比。

答案 1 :(得分:0)

我认为您需要使用Matrix对象。我前段时间做过同样的事情,我记得我遇到了与你相同的问题:

Bitmap targetBitmap = Bitmap.createBitmap(targetWidth, targetHeight, config);
Canvas canvas = new Canvas(targetBitmap);
Matrix matrix = new Matrix();
matrix.setRotate(mRotation,source.getWidth()/2,source.getHeight()/2);
canvas.drawBitmap(source, matrix, new Paint());

编辑:将此功能与计时器处理程序一起使用

public Bitmap rotateImage(int angle, Bitmap bitmapSrc) {
Matrix matrix = new Matrix();
matrix.postRotate(angle);
return Bitmap.createBitmap(bitmapSrc, 0, 0, 
        bitmapSrc.getWidth(), bitmapSrc.getHeight(), matrix, true);

}