安卓画布-缩放和平移

4
我有一个SVG文件,想在Android上使用手势进行缩放和平移。目前它可以工作,但对我来说不够流畅。那么如何改进这个类以实现平滑的平移,在所有缩放级别下都可以工作,并保持手指下方,使用捏合手势缩放聚焦于手势区域(也称焦点),而双击则应该将图像弹回到1.0?我正在使用这个SVG库。接受的答案应符合这些功能要求,不能出现意外跳转,并坚持使用GestureDetectors,除非有理由表明它们行不通。
public class MapView extends ViewGroup {
    private static final float MINIMUM_SCALE_FACTOR = 1.0f;
    private static final float MAXIMUM_SCALE_FACTOR = 10.0f;

    private Picture mPicture;
    private Paint mPaint;

    private ScaleGestureDetector mScaleDetector;
    private GestureDetector mMoveDetector;

    private float mScaleFactor;
    private float mScaleFocusX;
    private float mScaleFocusY;
    private float mFocusX = 0.0f;
    private float mFocusY = 0.0f;

    private float mImageHeight;
    private float mImageWidth;
    private int mViewHeight;
    private int mViewWidth;
    private RectF mDrawingRect;


    public MapView(Context context) {
        super(context);

        init(context);
    }

    public MapView(Context context, AttributeSet attrs) {
        super(context, attrs);

        init(context);

    }

    public MapView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);

        init(context);
    }

    public void init(Context context) {
        Log.d(getClass().getCanonicalName(), "Initialized.");

        this.setBackgroundColor(Color.WHITE);

        this.mPaint = new Paint();
        mPaint.setStyle(Paint.Style.STROKE);
        mPaint.setColor(Color.BLUE);
        mPaint.setStrokeWidth(2);
        mPaint.setAntiAlias(true);

        this.mScaleFactor = MINIMUM_SCALE_FACTOR;

        // Setup Gesture Detectors
        this.mScaleDetector = new ScaleGestureDetector(context, new ScaleListener());
        this.mMoveDetector = new GestureDetector(context, new MoveListener());
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        Log.d(getClass().getCanonicalName(), "onLayout");

        this.mDrawingRect = getDrawingSquare();
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);

        this.mViewWidth = w;
        this.mViewHeight = h;
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        Log.d(getClass().getCanonicalName(), "onDraw()");

        canvas.save();
        canvas.scale(mScaleFactor, mScaleFactor, mScaleFocusX, mScaleFocusY);

        canvas.translate(mFocusX, mFocusY);

        canvas.drawRect((int) mDrawingRect.left, (int) mDrawingRect.top, (int) mDrawingRect.right, (int) mDrawingRect.bottom, mPaint);
        canvas.drawPicture(mPicture, mDrawingRect);

        canvas.restore();
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        mScaleDetector.onTouchEvent(ev);
        mMoveDetector.onTouchEvent(ev);

        return true;
    }

    public RectF getDrawingSquare() {
        float width = getWidth();
        float height = getHeight();
        Log.d(getClass().getCanonicalName(), "Picture width " + width + " - height " + height);

        float side = Math.min(width, height);

        return new RectF(0, 0, side, side);
    }

    public void setSVG(SVG svg) {
        Log.d(getClass().getCanonicalName(), "SVG to Picture.");

        this.mPicture = svg.getPicture();
        this.mImageHeight = mPicture.getHeight();
        this.mImageWidth = mPicture.getWidth();

        invalidate();
    }

    private class ScaleListener extends ScaleGestureDetector.SimpleOnScaleGestureListener {
        @Override
        public boolean onScale(ScaleGestureDetector detector) {
            mScaleFactor *= detector.getScaleFactor(); // scale change since previous event
            mScaleFocusX = detector.getFocusX();
            mScaleFocusY = detector.getFocusY();

            // Don't let the object get too small or too large.
            mScaleFactor = Math.max(MINIMUM_SCALE_FACTOR, Math.min(mScaleFactor, MAXIMUM_SCALE_FACTOR));

            invalidate();

            return true;
        }
    }

    private class MoveListener extends GestureDetector.SimpleOnGestureListener {
//        @Override
//        public boolean onDown(MotionEvent e) {
//            return true;
//        }

        @Override
        public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY) {
            scrollBy((int)distanceX, (int)distanceY);
//            mFocusX += distanceX;
//            mFocusY += distanceY;
//            return true;
            return true;
        }
    }
}
1个回答

1
如果重新绘制图片不够快,您可能需要将其绘制到位图中,然后滚动该位图。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接