a simple android circle view
some attrs
width
- the width of the outer arcmTitle
- main titlesubtitle
- sub title under main titlemsize
- the size of main titlemcolor
- the color of main titlesubColor
- the color of sub titlesubSize
- the size of sub titleoutRadius
- the radius of the outer circleinnerRadius
- thee radius of the inner circleoutColor
- the color of the outer circleinnerColor
- the color of the inner circle
<com.dingdangmao.circleview.CircleView
android:id="@+id/cv"
app:width="15dp"
app:mTitle="25%"
app:mSize="40sp"
app:mColor="#FFFFFF"
app:subTitle="hello"
app:subColor="#FFFFFF"
app:subSize="20sp"
app:outRadius="120dp"
app:innerRadius="80dp"
app:outColor="@color/out"
app:innerColor="@color/inner"
android:background="#FFFFFF"
android:layout_width="match_parent"
android:layout_height="match_parent" />