How to draw a circle with a transparent middle

I am trying to draw a white circle with the following code:

mPaint.setColor(0xFFFFFFFF);
canvas.drawCircle(x, y, radius, mPaint);

But it is being displayed as a solid disk. How do I get it to just display as a circular outline with a transparent centre?

I've had a look in the help and it makes no sense to me, probably because I'm not used to the drawing terms like stroke and dither. What's wrong with background and border, eh?


I suspect you want:

mPaint.setStyle(Paint.Style.STROKE);

so that it doesn't do the filling. But then again, I've never used the Android API - this is really just a guess based on the docs :)

链接地址: http://www.djcxy.com/p/68952.html

上一篇: Spritesheet以编程方式切割:最佳做法

下一篇: 如何绘制一个透明中间的圆