I am trying to draw a white circle with the following code:
mPaint.setColor(0xFFFFFFFF); canvas.drawCircle(x, y, radius, mPaint);
But it is bei
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 :)