/**
* Setup primary color for the arcs.
* Basically initializes {@code mColorList} with provided color.
*
* @param color A {@link ColorInt}.
*/
protected void setPrimaryColor(@ColorInt int color) {
// clear color list and make it null, so it's ignored when drawing and primary color will be used instead
setColorList(null);
if (mPrimaryColor != color) {
mPrimaryColor = color;
}
}
ArcLoadingView.java 文件源码
java
阅读 82
收藏 0
点赞 0
评论 0
项目:AnimatedArcProgressView
作者:
评论列表
文章目录