uknownothingsnow / CircleProgress

CircleProgress, DonutProgress, ArcProgress
3.81k stars 921 forks source link

When set angle 220 and progress 0, ArcProgress filled completely on 360 degrees #58

Open ar-g opened 8 years ago

ar-g commented 8 years ago

Angle 222 works fine

Andecy commented 8 years ago

Angle 222?

Andecy commented 8 years ago

I has got this issues when DO NOT SET angle

ivotai commented 7 years ago

canvas.drawArc(bounds, 130, 0, false, paint); There is a circle. (wrong) canvas.drawArc(bounds, 131, 0, false, paint); There is nothing.(right) What's the deep reason?

ivotai commented 7 years ago

use drawPath instead of drawArc can fix this problem.