Android ClipDrawable

Android系统提供了水平进度条供我们显示进度使用,水平进度条在显示进度时使用的就是Clip Drawable技术。

官网介绍:

http://developer.android.com/guide/topics/resources/drawable-resource.html

1、实现水平进度条:

http://book.51cto.com/art/201311/418600.htm

2、实现圆形进度条:

http://www.android100.org/html/201409/23/65600.html

3、实现竖直进度条:

https://github.com/mgrzechocinski/AndroidClipDrawableExample

4、图片慢慢展开特效:

http://www.myexception.cn/mobile/1802377.html

5、一个有创意的:

https://github.com/JaydipZala/Custom-Progressbar

6、15%的leveal是多少?

int temp_level = (15 * MAX_LEVEL) / 100;

你可能感兴趣的:(Android ClipDrawable)