Hopefully this is a simple one as I've been asking loads recently...
I am trying to draw the 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 an 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?
-Frink