在Android中绘制带有选项厚度的椭圆形

时间:2012-02-01 09:49:41

标签: android

我想绘制一个带有选项厚度的椭圆

Paint paintt = new Paint();

paintt.setColor(Color.RED);

paintt.setStyle(Paint.Style.STROKE);

RectF ovalBounds = new RectF(leftx, topy, rightx, bottomy);

canvas.drawOval(ovalBounds, paintt);

如果我想增加椭圆的厚度,我该怎么办?

2 个答案:

答案 0 :(得分:1)

在油漆上使用setStrokeWidth()方法。

答案 1 :(得分:0)

使用setStrokeWidth()方法绘制带有厚度选项的椭圆。

e.g:

paintt.setStrokeWidth(10); //thickness is 10, increase or decrease this value 10 accordingly