0

我想围绕中心枢轴旋转android应用程序中的图像,以下是代码..

package com.android.maddy.canvs;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;

import android.os.Handler;
import android.provider.OpenableColumns;
import android.view.MotionEvent;
import android.view.View;

public class drawview extends View {
    private Drawable d[]=new Drawable[2];

    Boolean done=false;
    Handler h;
    float th=0;
    public drawview(Context context) {
        super(context);
        d[0]=context.getResources().getDrawable(R.drawable.appdatabk);
        d[1]=context.getResources().getDrawable(R.drawable.appdata);
        h = new Handler();
    }

    Runnable r =new Runnable() {

        @Override
        public void run() {
            // TODO Auto-generated method stub

            th++;
            invalidate();
        }
    };

    public void onDraw(Canvas c){
        super.onDraw(c);
        Paint p =new Paint();
        Rect imageBounds = c.getClipBounds();  // for the background
        d[0].setBounds(imageBounds);

        d[0].draw(c);

        Matrix m = new Matrix();
        m.setTranslate(getWidth()/2, getHeight()/2);        
        m.preRotate(th,43,160); //my image is 86x320

        Bitmap b =     BitmapFactory.decodeResource(getResources(),R.drawable.appdata);//image of the bottle i want to rotate
        c.drawBitmap(b,m, p);
        p.setColor(Color.BLUE);
        h.postDelayed(r,1);


    }



    }

这里发生的是矩阵计算减慢了旋转速度,因此它给出了丑陋的缓慢输出。如果您有另一种方法可以在不使用矩阵的情况下围绕中心枢轴旋转图像,或者有其他方法,那么请帮帮我。 . 我还删除了矩阵并使用 x+r*(Math.cos(th)) 和 y+r*(Math.sin(th)) 检查了 drawBitmap() 函数中的旋转,它们工作正常,但图像不旋转围绕枢轴..请帮助..谢谢

4

2 回答 2

1

矩阵相当快。让你慢下来的是你在 onDraw 中创建类和加载位图。在类中创建 Paint 和 Matrix 之一,并且还加载一次位图

于 2013-04-18T14:29:07.157 回答
0

我有同样的问题。我认为会发生什么是画布将矩阵值存储到一个数组中,并且旋转画布的次数越多,它就会填满。

当你使用Matrix.postRotate(degrees, px, py)Canvas.concat(Matrix)

于 2015-10-20T15:41:38.240 回答