标签:
Gif调研总结:
有三个开源项目实现gif,1、android-gif-drawable (https://github.com/koral--/android-gif-drawable) 2、ImageViewEx(https://github.com/frapontillo/ImageViewEx) 3、GifImageView(http://www.jcodecraeer.com/a/opensource/2014/1206/2120.html)
优缺点分析:gifview不能很好的解决OOM问题; android-gif-drawable底层解码使用C实现,极大地底稿了解码效率,同时很大程度上避免了OOM现象出现,这个可以获得帧的数目,存储每帧的像素需要的最小字节数,存储每帧的像素分配的最小字节数,可以自由控制gif的停止还是运行; ImageViewEx支持 Gif 显示的 ImageView,依赖很多,编译过程很繁琐。
标签:
原文地址:http://www.cnblogs.com/fuyanan/p/5086743.html