首页 > 学院 > 开发设计 > 正文

glide中级进阶

2019-11-09 17:40:00
字体:
来源:转载
供稿:网友
一、glide和CircleImageView项目有冲突(直接使用glide切圆形即可)解决:放弃CircleImageView,直接使用glide切圆形。代码:编写了一个工具类。复制代码即可//将图片设置为圆形public static voidshowImage(finalContext context, String url, final ImageView imageview,Integer drawable) {if(null!=context){Glide.with(context).load(url).asBitmap().placeholder(drawable).centerCrop().fitCenter().error(drawable).into(newBitmapImageViewTarget(imageview) {@OverridePRotected voidsetResource(Bitmap resource) {RoundedBitmapDrawable circularBitmapDrawable =RoundedBitmapDrawableFactory.create(context.getResources(), resource);circularBitmapDrawable.setCircular(true);imageview.setImageDrawable(circularBitmapDrawable);}});}}二、安全的显示gif图片(考虑到url返回的可能不是gif)Glide .with( context ) .load( gifUrl ) .asGif() .error( R.drawable.full_cake ) .into( imageViewGif );3、不缓存图片(glide默认是内存加磁盘缓存)Glide .with( context ) .load( eatFoodyImages[0] ) .diskCacheStrategy( DiskCacheStrategy.NONE ) .skipMemoryCache( true ) .into( imageViewInternet );skipMemoryCache( true ) 内存缓存diskCacheStrategy( DiskCacheStrategy.NONE ) 磁盘缓存 磁盘缓存需要枚举而不是布尔DiskCacheStrategy.NONE 什么都不缓存,就像刚讨论的那样DiskCacheStrategy.SOURCE 仅仅只缓存原来的全分辨率的图像。DiskCacheStrategy.RESULT 仅仅缓存最终的图像,即,降低分辨率后的(或者是转换后的)DiskCacheStrategy.ALL 缓存所有版本的图像(默认行为)4、glide加载优先级比如:大将军身边有两个小士兵,那么肯定优先展示将军将更好看.很多时候,图片是有先后顺序的。可以使用一下枚举Priority.LOWPriority.NORMALPriority.HIGHPriority.IMMEDIATE使用方式:高优先级:Glide .with( context ) .load( UsageExampleListViewAdapter.eatFoodyImages[0] ) .priority( Priority.HIGH ) .into( imageViewHero );低优先级:Glide .with( context ) .load( UsageExampleListViewAdapter.eatFoodyImages[0] ) .priority(Priority.LOW) .into( imageViewHero );5、如何用 Glide 旋转图片创建这个类:public class RotateTransformation extends BitmapTransformation { private float rotateRotationAngle = 0f; public RotateTransformation(Context context, float rotateRotationAngle) { super( context ); this.rotateRotationAngle = rotateRotationAngle; } @Override protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) { Matrix matrix = new Matrix(); matrix.postRotate(rotateRotationAngle); return Bitmap.createBitmap(toTransform, 0, 0, toTransform.getWidth(), toTransform.getHeight(), matrix, true); } @Override public String getId() { return "rotate" + rotateRotationAngle; }}使用方式:Glide .with( context ) .load( eatFoodyImages[0] ) .transform( new RotateTransformation( context, 90f )) .into( imageView3 );Bug:旋转后(非90度,如45度),出现的出图片外区域为黑色!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表