环形进度条
<declare-styleable name="RingProgressBar">
<!--上层画笔的粗细-->
<attr name="upPaintWidth" format="dimension"/>
<!--下层画笔的粗细-->
<attr name="downPaintWidth" format="dimension"/>
<!--上层画笔的颜色-->
<attr name="upPaintColor" format="color"/>
<!--下层画笔的颜色-->
<attr name="downPaintColor" format="color"/>
<!--内边距-->
<attr name="circlePadding" format="dimension"/>
<!--开始角度-->
<attr name="startAngle" format="integer"/>
<!--最大值-->
<attr name="maxValue" format="integer"/>
<!--进度-->
<attr name="progressValue" format="integer"/>
<!--小圆点颜色,不写默认是上层画笔宽度的一半-->
<attr name="pointColor" format="color"/>
<!--小圆点宽度-->
<attr name="pointWidth" format="integer"/>
<!--是否反转-->
<attr name="isInverse" format="boolean"/>
</declare-styleable>
