Android Question [Solved] Drawing transparent circle with solid border

asales

Expert
Licensed User
Longtime User
I see this code in I could draw a circle (and works fine):
https://www.b4x.com/android/forum/threads/trigonometric-circle.8547/#post-48013

I want to draw a transparent circle with solid border (blue, red colors, etc.) and put this circle in a panel or customlistview, for example.

transparent_circle1.png


How I can do this?

Thanks in advance for any tips.
 

sorex

Expert
Licensed User
Longtime User
did you try this on a canvas?

B4X:
cvs.DrawCircle(50,50,100,Colors.Blue,False,10)
 
Upvote 0
Top