标签:progressbar loading imageview animation ios
最近APP的progress的加载效果要修改,要做仿IOS的颜色渐变的效果,一开始做了12张依次旋转的图放到animation-list来实现帧动画,实现后效果不是很流畅。后来想到把一张loading图放到ImageView里,然后ImageView再启动旋转的动画,实现后效果很不错,anim文件:
<?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"> <rotate android:fromDegrees="0" android:toDegrees="359" android:duration="1000" android:repeatCount="-1" android:pivotX="50%" android:pivotY="50%" /> </set>
为了研究这个问题,看了很多网上的资料,大部progress效果都是创建个动画文件然后给到ProgressBar进行显示,大部分效果不是很好都会有卡的问题,如果用上面方法就没有这样的问题,把最近看的资料都整理成一个Demo,第一个loading效果就是ImageViewy旋转动画实现的,Demo下载。
QQ群:6399844,欢迎一起交流学习!
标签:progressbar loading imageview animation ios
原文地址:http://blog.csdn.net/xiechengfa/article/details/41733557