CircleProgressBar
Demo
Gradle
compile 'me.tedyin.circleprogressbarlib:circleprogressbarlib:0.6.1'
Usage
Layout xml
CircleProgressBar
<me.tedyin.circleprogressbarlib.CircleProgressBar
android:layout_width="56dp"
android:layout_height="56dp"
app:cpbStrokeWidth="10"
app:cpbBackgroundColor="#9000"
app:cpbForegroundColor="#0b90cf"
app:cpbProgressTextColor="#ffaabb"
app:cpbWholeBackgroundColor="#ff5ca5c3"
app:cpbNeedAnim="true"
app:cpbStartAngle="-90"
app:cpbMaxAngle="360"
app:cpbNeedShowText="true"/>
LineProgressBar
<me.tedyin.circleprogressbarlib.LineProgressBar
android:layout_gravity="center"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:lpbProgressImage="@mipmap/icon"
app:lpbSecondaryProgressImage="@mipmap/icon_black"
android:layout_width="wrap_content"
app:lpbImageWidth="100dp"
app:lpbImageHeight="100dp" />
Java Method:
CircleProgressBar bar;
...
// set color scheme
bar.setColorScheme(Color.GREEN, Color.YELLOW, Color.RED);
// Loading complete callback
bar.setLoadingCallBack(new CircleProgressBar.LoadingCallBack() {
@Override
public void loadingComplete(View v) {
// do loading complete
}
});
Update log
- v0.6.1 添加背景颜色设置属性,修改进度颜色属性名称
- v0.6.0 添加横向进度条
原文来自IT蓝豹:http://www.itlanbao.com,请转载时明标注出处,谢谢!
本文介绍了一个名为CircleProgressBar的Android库的使用方法,包括如何通过Gradle引入依赖、XML布局文件中配置属性以及Java代码中调用接口等。此外,还介绍了如何设置进度条的颜色方案及加载完成回调。
2461

被折叠的 条评论
为什么被折叠?



