Android万能的图片加载框架(Glide、Fresco、Picasso)

来源:互联网 发布:腾讯微信数据报告2017 编辑:程序博客网 时间:2024/06/05 11:55

做安卓开发中加载图片是一个很常用的功能,但是如果没写好的话,很容易产生OOM,这里介绍几个好用的开源的图片加载框架。

第一个是Glide,Glide一般是配合PhotoView来使用的,轻松实现图片放大、缩小和双击放大等功能。具体的用法我就不再重复写了,这里推荐几个博客,写得很详细,看完就明白了。

http://mrfu.me/2016/02/27/Glide_Getting_Started/

http://blog.csdn.net/jiangxuqaz/article/details/50421754

http://www.cnblogs.com/whoislcj/p/5558168.html


第二个是Fresco,同样是推荐几篇博客。

http://blog.csdn.net/wl1769127285/article/details/51085207

http://blog.csdn.net/jiangxuqaz/article/details/50408441

http://www.kaelli.com/14.html

https://www.fresco-cn.org/docs/index.html


第三个是Picasso,同样是推荐几篇博客。

http://blog.csdn.net/xu_fu/article/details/17043231

http://square.github.io/picasso/

http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2014/0731/1639.html


最后,如果你使用的是eclipse的话,这里附上jar包的下载链接。

http://download.csdn.net/detail/u014727709/9697845

欢迎start,欢迎评论,欢迎指正

0 2