Android 自定义View(三)Material Design风格的ProgressBar

来源:互联网 发布:美版6s支持什么网络 编辑:程序博客网 时间:2024/06/06 11:47

Android Material Design深受欢迎,ProgressBar在版本5.0以后是用AnimatedVectorDrawable实现的,可惜5.0之前不能用。关于怎样用AnimatedVectorDrawable实现Material风格的ProgressBar,请点击查看https://blog.stylingandroid.com/indeterminate-part-1/,有详细的介绍。
下面讲一下怎样 在5.0之前实现Material Design 风格的ProgressBar.
先看看最后实现的效果,是不是跟tumblr的progressbar很像,都可以变色哦~

这里写图片描述
当然还是跟AnimatedVectorDrawable版本有点区别的,这里参考了下https://github.com/dodocat/CircularProgress,修复了偶尔图像错乱的bug.具体的代码请看
https://github.com/GoldbergM/MCustomView。

0 0