我想绘制一个带有选项厚度的椭圆
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);
如果我想增加椭圆的厚度,我该怎么办?
答案 0 :(得分:1)
在油漆上使用setStrokeWidth()
方法。
答案 1 :(得分:0)
使用setStrokeWidth()
方法绘制带有厚度选项的椭圆。
e.g:
paintt.setStrokeWidth(10); //thickness is 10, increase or decrease this value 10 accordingly