picasso是Square公司开源的一个Android图形缓存库,地址http://square.github.io/picasso/,可以实现图片下载和缓存功能。
picasso使用简单
需要再build中添加依赖库 compile ‘it.sephiroth.android.library.picasso:picasso:2.5.2.4b’
用法很简单:
Picasso.with(this).load(“https://ss0.baidu.com/6ONWsjip0QIZ8tyhnq/it/u=3216299298,3496853317&fm=170&s=B604D54F467B2F9EF72481B903001011&w=237&h=275&img.JPG“).placeholder(R.drawable.ic_home_black_24dp).error(R.drawable.ic_settings_black_24dp).into(photo);
placeholder是指加载中的图片,error是指加载失败展示的图片