0

多くの長方形と楕円を含むカスタム ビューがあり、..... canvas.Rotate(degree,cneterX,centerY) を使用して、キャンバス全体 (長方形と楕円形と ....) を回転できます。

しかし、私のビューの一番下には、 canvas.rotate() を使用したときに回転しないメニューのようなものが必要です。これは、これらの長方形と楕円を回転させたいが、同じキャンバスで作成されるメニューを回転させたくないことを意味します。

@Override 
  protected void onDraw(Canvas canvas) {

    float ringWidth = textHeight + 4; 
    int height = getMeasuredHeight(); 
    int width =getMeasuredWidth(); 

    int px = width; 
    int py = height/2; 
    Point center = new Point(px,py ); 

    int radius = Math.max(px, py)-2; 

    int UpperSide = center.y;

    RectF boundingBox = new RectF(center.x - radius,  center.y - radius, center.x + radius, center.y + radius); 

    RectF innerBoundingBox = new RectF(center.x - radius , center.y - radius , center.x + radius, center.y + radius ); 


    RectF GroundSectionBox = new RectF(center.x - radius,UpperSide ,center.x + radius,center.y + radius);

    RectF RightPanel = new RectF(center.x + width -(width/4), center.y - (radius/2)+10, center.x+radius- ringWidth, center.y + (radius/2)-10);
    RectF LeftPanel = new RectF(center.x - radius + ringWidth ,center.y - (radius/2)+10, center.x - width + (width/4), center.y + (radius/2)-10);

    RectF RightBlack = new RectF(center.x + width -(width/4),center.y-(radius/10),center.x+radius- ringWidth,center.y + (radius/10));
    RectF leftBlack = new RectF(center.x - radius + ringWidth ,center.y - (radius/10), center.x - width + (width/4), center.y + (radius/10));

        .
        .
    canvas.drawRect(innerBoundingBox, groundPaint);

    canvas.drawPath(skyPath, skyPaint);     
    canvas.drawRect(GroundSectionBox, skyPaint);

    canvas.drawPath(skyPath, markerPaint);

    canvas.drawRect(RightBlack, sideBlack);
    canvas.drawRect(leftBlack, sideBlack);


    canvas.drawRect(RightPanel, RightPanelup);
    canvas.drawRect(LeftPanel, LeftPanelUp);
        .
        .
      }
4

1 に答える 1

0

Canvas の save メソッドと restore メソッドを使用して、変形したものを描画し、元の状態に戻すことができます。次に例を示します。

protected void onDraw(Canvas canvas)
{
     canvas.save(); // Canvas is in original state. Save it before anything

     // Perform any transformations you want here (like rotate)
     // Draw while your transformations are in place (like ovals) 

     canvas.restore(); // Canvas state returned to what it was when you called save

     // Draw things that need to be drawn without any transformations
}

お役に立てれば :)

于 2013-10-03T12:44:21.890 に答える