GitHub - iceAnson/RoundProgressView
roundProgressView = (RoundProgressView)findViewById(R.id.roundProgressView);
RoundProgressConfig roundProgressConfig = new RoundProgressConfig();
roundProgressConfig
.setCircleBgColor(R.color.rcharview_cover_range_blue)
.setCircleInsideColor(R.color.xiyou_white)
.setEndColor(R.color.xiyou_pink)
.setStartColor(R.color.xiyou_white)
.setMaxProgress(100)
.setMinProgress(0)
.setTextSize(24)
.setTextUnitSize(16)
.setUnitText("分")
.setProgressBarWidth(Helper.dip2px(getApplicationContext(), 18))
.setTextColor(R.color.xiyou_pink)
.setTextUnitColor(R.color.xiyou_pink);
roundProgressView.init(roundProgressConfig);
roundProgressView.setProgress(60, true);