Kotlin code to draw a circle:
val paint: Paint = Paint()
paint.setColor(Color.BLACK)
paint.strokeWidth = 3f
paint.style = Paint.Style.STROKE
canvas?.drawCircle(200f, 300f, 70f, paint)
GitHub repo:
https://github.com/zhijunsheng/connec...