转载请标明出处:http://blog.csdn.net/collorye/article/details/53507396
1.可以加载gif图片(一个比较有特色的地方)
2.加载速度快、流畅度高
3.与Picasso相比,with()方法参数上下文显示更多
4.可以使用Picasso大部分功能
Glide3.7.0:464KB
dependencies {
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support:support-v4:19.1.0'
}
ImageView imageView = (ImageView) findViewById(R.id.my_image_view);
Glide.with(this).load("http://inthecheesefactory.com/uploads/source/glidepicasso/cover.jpg").into(imageView);
a.with(Context context)
b.with(Activity activity)
c.with(FragmentActivity activity)
d.with(android.app.Fragment fragment)
e.with(Fragment fragment)
可以设置缓存图片的尺寸
github地址:https://github.com/tpnet/GlideUtils
https://github.com/bumptech/glide
1.变换图像可以更好地适应布局,并且减少内存大小
2.错误情况下加载错误图片
3.文件自由和R文件都可以加载
4.有统计和监控的功能
5.并发数可以随网络状态改变
6.可以优先级加载
Picasso2.5.2:118KB
地址:http://square.github.io/picasso/
dependencies {
compile 'com.squareup.picasso:picasso:2.5.2'
}
ImageView imageView = (ImageView) findViewById(R.id.my_image_view);
Picasso.with(context).load("http://i.imgur.com/DvpvklR.png").into(imageView);
(1).图片转换
Picasso.with(context)
.load(url)
.resize(50, 50)
.centerCrop()
.into(imageView);
(2).加载发生错误的时,加载一张图片作为提示
Picasso.with(context)
.load(url)
.placeholder(R.drawable.user_placeholder)
.error(R.drawable.user_placeholder_error)
.into(imageView);
(3).R文件和文件的加载
Picasso.with(context).load(R.drawable.landing_screen).into(imageView1);
Picasso.with(context).load(new File(...)).into(imageView2);
四.github网站
https://github.com/square/picasso
1.内存管理,三级缓存设计
2.图片预览,渐进式显示效果和多图请求
3.图片呈现效果,支持Gif、WebP格式
4.第一次加载和加载缓存速度都比较快
3.5M左右
dependencies {
// 在 API < 14 上的机器支持 WebP 时,需要添加
compile 'com.facebook.fresco:animated-base-support:0.12.0'
// 支持 GIF 动图,需要添加
compile 'com.facebook.fresco:animated-gif:0.12.0'
// 支持 WebP (静态图+动图),需要添加
compile 'com.facebook.fresco:animated-webp:0.12.0'
compile 'com.facebook.fresco:webpsupport:0.12.0'
// 仅支持 WebP 静态图,需要添加
compile 'com.facebook.fresco:webpsupport:0.12.0'
}
(1).Application内添加
[MyApplication.java]
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Fresco.initialize(this);
}
}
(2).在布局文件中添加
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:fresco="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent"
android:layout_width="match_parent">
(3).添加SimpleDraweeView
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/my_image_view"
android:layout_width="130dp"
android:layout_height="130dp"
fresco:placeholderImage="@drawable/my_drawable"/>
(4).加载图片
Uri uri = Uri.parse("https://raw.githubusercontent.com/facebook/fresco/gh-pages/static/logo.png");
SimpleDraweeView draweeView = (SimpleDraweeView) findViewById(R.id.my_image_view);
draweeView.setImageURI(uri);
https://github.com/CarGuo/FrescoUtils
https://github.com/facebook/fresco
Picasso < Glide < Fresco,如果你不使用特别复杂的功能的的情况下,使用Picasso完全是没有问题的。
Frscco > Glide > Picasso,如果项目中图片较多,功能比较复杂,可以使用Fresco。
Frscco > Glide > Picasso,因为Android中有64K限制,所以正常情况下没必要使用方法数量较多的。
Glide ≈ Fresco > Picasso,由于流畅度是一项很重要的指标,可以选择流畅度高的。