Just a quick question. In android, the code for drawing a circle using Canvas
is as below.
canvas.drawCircle (float cx, float cy, float radius, Paint paint)
I read the documentation to find out whether this float radius
is dp units or any other unit. There is no such mentioning.
So, what is the unit this float radius
is mentioned in? Is it dp units?