Android图片处理之Glide使用大全

2024-06-19 13:32

本文主要是介绍Android图片处理之Glide使用大全,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Android图片处理之Glide使用大全

http://blog.csdn.net/u013278099/article/details/50459128

标签: Glide图片缓存网络处理
  3173人阅读  评论(1)  收藏  举报
  分类:
 

目录(?)[+]

        听说Glide是一个牛逼的图片加载库,作者是bumptech,然后这个库被广泛的应用在谷歌的官方app里,也就是谷歌支持我们使用这个来加载图片库,所以呢就需要响应谷歌的要求,就像网络访问我们用volley,然后大部分安卓开发者都弃用eclipse转战Android studio一样,现在好的图片开源库真是太多了,显然也是各有特点自己适合才是最好的,所以就来学习下这个Glide的图片库,有了android studio开发真是太方便了羡慕

      

   Android Glide是一个开源的图片加载和缓存处理的第三方框架。使用Android的Glide和Android的Picasso库惊人的相似,基本上会用毕加索的也就会使用这个东东了,个人感觉比Android Picasso好用。Android Glide使自身内部已经实现了缓存策略,使得开发者摆脱Android图片加载的琐碎事务,专注逻辑业务的代码。Android Glide使用便利,短短几行简单明晰的代码,即可完成大多数图片从网络(或者本地)加载、显示的功能需求。

   一.为什么要使用Glide

    以前还没有出Glide、Picasso和Fresco的时候我们最常用的是使用老牌的图片框架universalImageLoader,universalImageLoader配置相对麻烦,虽然提供了各种配置,但是没有实践过,根本不知道如何配置,网上的介绍也很多,总体感觉就是配置太多了,使用起来也还算比较方便吧,总之来说使用eclipse开发的时候这个框架加载图片感觉是非常的轻松,确实也很少出现oom,这里要给它点个赞,然后也是国产app使用最多的一个图片加载框架了,一般使用volley去发送请求,处理图片时虽然它也带了ImageLoader和NetworkImageView但是很容易出现oom,然后通常使用volley+universalImageLoader。

           随着Glide、Picasso和Fresco三个图片加载库的出现,我们就更加喜欢用更方便的图片框架了,universalImageLoader虽然好但是配置多,但是我们使用加载过多的大图片时,Picasso(毕加索)占用的内存会相当的大,所以如果是要加载很多图片那么毕加索可能会OutOfMemoryError的发生,至于Fresco是一个非常强大的图片加载框架,支持webps格式(和jpg一样都是有损压缩格式,webps相同质量图片更节省空间),支持渐进式jpeg,可以轻松的定制image的各种属性,支持多图请求和图片复用,并支持手势缩放和旋转等等(这里不做比较)。

      所以具体来看Glide和Picasso,Glide加载图像以及磁盘缓存的方式都要优于Picasso,速度更快,并且Glide更有利于减少OutOfMemoryError的发生,GIF动画是Glide的杀手锏。不过Picasso的图片质量更高。glide从用法上几乎就是另一个picasso,从picasso转移到glide相对改动较少,还有一点就是这个项目是google在维护,我也能给它更多的信任,相比较universalImageLoader,glide可以支持gif和短视频,后期也需要用到,这里不得不谈一下glide优秀的缓存机制了,glide图片缓存默认使用RGB565相当于ARGB8888可以节省不少的空间,支持与activity,fragment,application生命周期的联动,更智能管理图片请求当然还有其他的扩展更多可以看 glide介绍 当然,glide的方法数量比universalImageLoader多了1000多个,遇到64k问题的会比较关注这个。

      不说了,反正这些图片加载框架都是相当 的牛逼,你就看着用好了。

二.Glide的使用

     上一篇我们讲了毕加索《安卓图片处理Picasso的解析使用》,对着上一篇你就会知道Glide和Picasso的使用差不多。

     我们现在就来使用吧,依旧是你想用glide-3.6.1.jar就去下载,放在libs下导入就好了,如果你使用的是AS那么就更加简单了

      你有github账号就更加好了,没有那么你就落后了,赶紧去申请一个,没有也可以去github去downLoad ZIP,有你就直接git clone https://github.com/bumptech/glide.git

repositories {mavenCentral()
}dependencies {compile 'com.github.bumptech.glide:glide:3.6.1'compile 'com.android.support:support-v4:23.1.1'
}

从这里你发现了好像是需要V4包,好像Picasso不要

Or Maven:

<dependency><groupId>com.github.bumptech.glide</groupId><artifactId>glide</artifactId><version>3.6.1</version>
</dependency>
<dependency><groupId>com.google.android</groupId><artifactId>support-v4</artifactId><version>r7</version>
</dependency>
按着说明文档一步步操作就好了:

说明里面也介绍了去代码混淆:在proguard-project.txt或proguard.cfg

-keep public class * implements com.bumptech.glide.module.GlideModule
-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {**[] $VALUES;public *;
}
准备工作完了,那就是你要去代码使用的时候了:

概括一句话也是

Glide在(with)当前上下文中加载(load)一张图片到(into)imageView控件

现在直接上代码,因为和毕加索的使用差不多:

MainActivity.Java

public class MainActivity extends AppCompatActivity {@InjectView(R.id.listview)ListView listview;
    @InjectView(R.id.single_view_asset)ImageView singleViewAsset;
    @InjectView(R.id.single_view_res)ImageView singleViewRes;
    private String[] images;

    private  ListViewAdapter mAdapter;
    @Override
    protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);
        setContentView(R.layout.content_main);
        ButterKnife.inject(this);
       //加载本地图片
       initLocal();
        //加载网络图片
        initNet();
    }private void initNet() {getImageUrls();
        mAdapter=new ListViewAdapter(images,MainActivity.this);
        listview.setAdapter(mAdapter);
    }private void getImageUrls() {images= new String[] {"https://img-my.csdn.net/uploads/201407/26/1406383299_1976.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383291_6518.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383291_8239.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383290_9329.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383290_1042.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383275_3977.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383265_8550.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383264_3954.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383264_4787.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383264_8243.jpg",
                "https://img-my.csdn.net/uploads/201407/26/1406383248_3693.jpg",


        };
    }private void initLocal() {//加载资源图片
        Glide.with(this).load(R.drawable.alipay).into(singleViewRes);
        //加载资产目录图片
        Glide.with(this).load("file:///android_asset/heart.png").into(singleViewAsset);
        //加载sd卡图片文件
        // Glide.with(this).load(new File("XXX")).into(iv_picasso);
    }}
再看适配器代码:ListViewAdapter.java

/**
 * Created by test1 on 2016/1/27.
 */
public class ListViewAdapter extends BaseAdapter{private String images[];
    private Activity mActivity;
    private LayoutInflater mInflat;
        public ListViewAdapter(String[] images,Activity mActivity) {this.images = images;
            this.mActivity = mActivity;
            mInflat=LayoutInflater.from(mActivity);
        }@Override
    public int getCount() {return images.length;
    }@Override
    public Object getItem(int position) {return images[position];
    }@Override
    public long getItemId(int position) {return position;
    }@Override
    public View getView(int position, View convertView, ViewGroup parent) {if(convertView==null){convertView=  mInflat.inflate(R.layout.list_item,null,false);
            ImageView iv= (ImageView) convertView.findViewById(R.id.iv);
            Glide.with(mActivity).load(images[position]).centerCrop().placeholder(R.mipmap.ic_launcher).crossFade().into(iv);
        }return convertView;
    }

还有很多方法:像crossFade()默认动画,fitCenter(),placeholder()占位图,error()错误图,空图等可以自己试试;

这里的Glide.with() 不仅可以传 Context ,还可以传Activity 和 Fragment,因为图片加载会和Activity/Fragment的生命周期保持一致,比如Paused状态在暂停加载,在Resumed的时候又自动重新加载。

效果看图:



这就是Glide的简单使用。

三.Glide的其他使用

如果想用Okhttp做协议栈可以直接添加 glide-okhttp-integration-1.3.1.jar ,并且在Application 或Activity 的onCreate 方法注册就可以使用okhttp做为协议栈,Volley也是同理;

Glide.get(this).register(GlideUrl.class,InputStream.class,newOkHttpUrlLoader.Factory(newOkHttpClient()));

Glide默认的图片格式是RGB_565所以,要想使用ARGB_8888模式,又想Okhttp做协议栈,就不能用glide-okhttp-integration-1.3.1.jar,直接抽取里面的OkHttpGlideModule类然后,添加builder.setDecodeFormat(DecodeFormat.PREFER_ARGB_8888);

用起来很简单,说下注意点吧:

1.placeholder() 占位图或者失败图都可以直接使用R.color.white 颜色来做;

2.如果加载不出来图片的话可以试试设置下图片的宽高;

3.图片缓存:图片的加载并不是全缓存,而是使用的imageview的大小来的,如果想要全缓存的就可以这样:

  • DiskCacheStrategy.NONE 什么都不缓存
  • DiskCacheStrategy.SOURCE 仅仅只缓存原来的全分辨率的图像
  • DiskCacheStrategy.RESULT 仅仅缓存最终的图像,即降低分辨率后的(或者是转换后的)
  • DiskCacheStrategy.ALL 缓存所有版本的图像(默认行为

.diskCacheStrategy(DiskCacheStrategy.ALL)

4.图片加载背景会变成绿色,加载jpg图片会出现的BUG,github上给出解决方案

Glide.with(this).load(url).diskCacheStrategy(DiskCacheStrategy.SOURCE).into(imageView); 或者

Glide.with(this).fromResource().asBitmap().encoder(newBitmapEncoder(Bitmap.CompressFormat.PNG,100)).load(R.drawable.testimg).into(imageView);

5.圆形图片用V4包自带的处理方式:

Glide.with(context).load(imageUrl).asBitmap().fitCenter().diskCacheStrategy(DiskCacheStrategy.SOURCE)

.placeholder(R.drawable.shape_glide_round_place).error(R.drawable.no_face_circle)

.into(newBitmapImageViewTarget(imageView) {

@Override

protected voidsetResource(Bitmap resource) {

RoundedBitmapDrawable circularBitmapDrawable =

RoundedBitmapDrawableFactory.create(context.getResources(),resource);

circularBitmapDrawable.setCircular(true);

imageView.setImageDrawable(circularBitmapDrawable);

}

});

5.动画crossFade()

crossFade() 方法还有另外重载方法 .crossFade(int duration)。如果你想要去减慢(或加快)动画,随时可以传一个毫秒的时间给这个方法。动画默认的持续时间是 300毫秒。

如果你想直接显示图片而没有任何淡入淡出效果,在 Glide 的建造者中调用 .dontAnimate() 。

6.清除缓存:Glide.get(this).clearMemory();              

 Glide.get(this).clearDiskCache(); 需要在子线程执行

7. 加载暂时不支持显示进度,可以用占位图来显示,把占位图替换成帧动画,还有错误图片,图片缩放以及自定义大小

当加载网络图片时,由于加载过程中图片未能及时显示,此时可能需要设置等待时的图片,通过placeHolder()方法: 

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. Glide  
  2.     .with(context)  
  3.     .load(imgurl)  
  4.     .placeholder(R.mipmap.ic_launcher) // can also be a drawable  
  5.     .into(imageViewPlaceholder);  
当加载图片失败时,通过error(Drawable drawable)方法设置加载失败后的图片显示:

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. Glide  
  2.     .with(context)  
  3.     .load(imgurl)  
  4.     .error(R.mipmap.future_studio_launcher) // will be displayed if the image cannot be loaded  
  5.     .into(imageView);  
 图片的缩放,centerCrop()和fitCenter():  

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. Glide.with(MainActivity.this)  
  2.                     .load(imgurl)  
  3.                     .fitCenter()//缩放类型  
  4.                     .into(imageView);  

  1. 使用centerCrop是利用图片图填充ImageView设置的大小,如果ImageView的Height是match_parent则图片就会被拉伸填充
  2. 使用fitCenter即缩放图像让图像都测量出来等于或小于 ImageView 的边界范围该图像将会完全显示,但可能不会填满整个 ImageView。

图片自定义显示大小:

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. Glide  
  2.     .with(context)  
  3.     .load(imgurl)  
  4.     .override(600200// resizes the image to these dimensions (in pixel). does not respect aspect ratio  
  5.     .into(imageViewResize);  

8.glide获取bitmap动态设置图片大小,通过viewTarget设置自定义view的图片

1.simpleTarget获取bitmap根据bitmap设定图片显示尺寸:(这里适配屏幕宽度,高度按比例拉伸)

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. final ImageView img = new ImageView(context);  
  2.         LayoutParams lp = img_content.getLayoutParams();  
  3.         lp.width=400;  
  4.         lp.height=200;  
  5.         img.setLayoutParams(lp);  
  6.         Glide.with(ShopActivity.this)  
  7.                 .load("http://dn-qpos-box.qbox.me/hqs.jpg").asBitmap()  
  8.                 .into(new SimpleTarget<Bitmap>() {  
  9.                     @Override  
  10.                     public void onResourceReady(Bitmap bitmap,  
  11.                             GlideAnimation<? super Bitmap> glideAnimation) {  
  12.                         int width = bitmap.getWidth();  
  13.                         int height = bitmap.getHeight();  
  14.                         LayoutParams lp = img.getLayoutParams();  
  15.                         lp.width = SysEnv.SCREEN_WIDTH;  
  16.                         float tempHeight=height * ((float)lp.width / width);  
  17.                         lp.height =(int)tempHeight ;  
  18.                         img.setLayoutParams(lp);  
  19.                         img.setImageBitmap(bitmap);  
  20.                         img_content.addView(img);  
  21.                     }  
  22.                 });  

2.simpleTarget获取bitmap指定尺寸:

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. private SimpleTarget target2 = new SimpleTarget<Bitmap>( 250250 ) {    
  2.     @Override  
  3.     public void onResourceReady(Bitmap bitmap, GlideAnimation glideAnimation) {  
  4.         imageView2.setImageBitmap( bitmap );  
  5.     }  
  6. };  
  7. private void loadImageSimpleTargetApplicationContext() {    
  8.     Glide  
  9.         .with( context.getApplicationContext() ) // safer!  
  10.         .load( eatFoodyImages[1] )  
  11.         .asBitmap()  
  12.         .into( target2 );  
  13. }  
3.viewTarget
假设你有一个 Custom View。Glide 并不支持加载图片到自定义 view 中,因为并没有方法知道图片应该在哪里被设置。然而,Glide 可以用 ViewTarget 更容易实现。
[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. public class FutureStudioView extends FrameLayout {    
  2.     ImageView iv;  
  3.     TextView tv;  
  4.   
  5.     public void initialize(Context context) {  
  6.         inflate( context, R.layout.custom_view_futurestudio, this );  
  7.   
  8.         iv = (ImageView) findViewById( R.id.custom_view_image );  
  9.         tv = (TextView) findViewById( R.id.custom_view_text );  
  10.     }  
  11.   
  12.     public FutureStudioView(Context context, AttributeSet attrs) {  
  13.         super( context, attrs );  
  14.         initialize( context );  
  15.     }  
  16.   
  17.     public FutureStudioView(Context context, AttributeSet attrs, int defStyleAttr) {  
  18.         super( context, attrs, defStyleAttr );  
  19.         initialize( context );  
  20.     }  
  21.   
  22.     public void setImage(Drawable drawable) {  
  23.         iv = (ImageView) findViewById( R.id.custom_view_image );  
  24.   
  25.         iv.setImageDrawable( drawable );  
  26.     }  
  27. }  
你不能使用常规的 Glide 的方法  .into() ,因为我们的自定义 view 并不继承自  ImageView 。因此,我们必须创建一个  ViewTarget ,并用  .into()  方法:
[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. private void loadImageViewTarget() {    
  2.     FutureStudioView customView = (FutureStudioView) findViewById( R.id.custom_view );  
  3.   
  4.     viewTarget = new ViewTarget<FutureStudioView, GlideDrawable>( customView ) {  
  5.         @Override  
  6.         public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {  
  7.             this.view.setImage( resource.getCurrent() );  
  8.         }  
  9.     };  
  10.   
  11.     Glide  
  12.         .with( context.getApplicationContext() ) // safer!  
  13.         .load( imgurl )  
  14.         .into( viewTarget );  
  15. }  
9.显示gif动画

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. Glide    
  2.     .with( context )  
  3.     .load( gifUrl )  
  4.     .asGif() //判断加载的url资源是否为gif格式的资源  
  5.     .error( R.drawable.full_cake )  
  6.     .into( imageViewGif );  
10.显示本地视频

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. String filePath = "/storage/emulated/0/Pictures/example_video.mp4";  
  2. Glide    
  3.     .with( context )  
  4.     .load( Uri.fromFile( new File( filePath ) ) )  
  5.     .into( imageViewGifAsBitmap );  
11.图片加载优先级

  • Priority.LOW
  • Priority.NORMAL
  • Priority.HIGH
  • Priority.IMMEDIATE   
[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. private void loadImageWithPriority() {    
  2.     Glide  
  3.         .with( context )  
  4.         .load( imageurl )  
  5.         .priority( Priority.HIGH )//优先级  
  6.         .into( imageView );  
  7. }  
12. 集成网络栈(okHttp,Volley):   

[java]  view plain copy
print ? 在CODE上查看代码片 派生到我的代码片
  1. dependencies {    
  2.     // your other dependencies  
  3.     // ...  
  4.     // Glide  
  5.     compile 'com.github.bumptech.glide:glide:3.6.1'  
  6.     // Glide's OkHttp Integration   
  7.     compile 'com.github.bumptech.glide:okhttp-integration:1.3.1@aar'  
  8.     compile 'com.squareup.okhttp:okhttp:2.5.0'  
  9. }  
  10. dependencies {    
  11.     // your other dependencies  
  12.     // ...  
  13.     // Glide  
  14.     compile 'com.github.bumptech.glide:glide:3.6.1'  
  15.     // Glide's Volley Integration   
  16.     compile 'com.github.bumptech.glide:volley-integration:1.3.1@aar'  
  17.     compile 'com.mcxiaoke.volley:library:1.0.8'  
  18. }  
四.如何调试Glide加载图片

与其他图片加载库不同,在Glide加载图片的过程中默认是没有任何log输出的。这样使得加载失败的原因难以调试。

为了在异常发生时可以看到它们,你可以打开Glide中处理所有媒体加载响应的类GenericRequest的log开关。很简单,在命令行运行下面的指令即可:

<code class="css" style="padding: 0px; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; border: none; background-color: transparent;"><span class="hljs-tag" style="color: rgb(133, 153, 0);">adb</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">shell</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">setprop</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">log</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.tag</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.GenericRequest</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">DEBUG</span></code>

如果你将DEBUG替换为VERBOSE,还可以看到详细的请求时间日志。

如果你想禁用log输出,执行:

<code class="css" style="padding: 0px; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; border: none; background-color: transparent;"><span class="hljs-tag" style="color: rgb(133, 153, 0);">adb</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">shell</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">setprop</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">log</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.tag</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.GenericRequest</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">ERROR</span></code>
调试工作流

Glide workflow.png


为了查看Glide内部引擎是何时、如何加载图片的,你可以启用这些log:

<code class="css" style="padding: 0px; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; border: none; background-color: transparent;"><span class="hljs-tag" style="color: rgb(133, 153, 0);">adb</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">shell</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">setprop</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">log</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.tag</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.Engine</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">VERBOSE</span>
<span class="hljs-tag" style="color: rgb(133, 153, 0);">adb</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">shell</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">setprop</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">log</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.tag</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.EngineJob</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">VERBOSE</span>
<span class="hljs-tag" style="color: rgb(133, 153, 0);">adb</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">shell</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">setprop</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">log</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.tag</span><span class="hljs-class" style="color: rgb(155, 112, 63);">.DecodeJob</span> <span class="hljs-tag" style="color: rgb(133, 153, 0);">VERBOSE</span></code>
请求监听器

虽然启动调试日志很简单,但前提是你可以访问到设备。为了完善Glide已存在或更复杂的错误日志系统,你可以使用RequestListener类。当加载请求失败时onException()方法就会被调用,并给出造成失败的异常或者null(在解码器无法从它获取到的数据中解码出任何有用的东西时)。你可以通过listener() API为每一个请求添加一个监听器。

确保onException()方法的返回值为false,避免覆盖Glide默认的错误处理(比如加载失败的错误图片占位)。

这里有一个实现快速调试的列子:

<code class="java" style="padding: 0px; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; border: none; background-color: transparent;"><span class="hljs-comment" style="color: rgb(147, 161, 161);">// 示例: .listener(new LoggingListener<String, GlideDrawable>()) </span>
<span class="hljs-keyword" style="color: rgb(133, 153, 0);">public</span> <span class="hljs-class"><span class="hljs-keyword" style="color: rgb(133, 153, 0);">class</span> <span class="hljs-title" style="color: rgb(181, 137, 0);">LoggingListener</span><<span class="hljs-title" style="color: rgb(181, 137, 0);">T</span>, <span class="hljs-title" style="color: rgb(181, 137, 0);">R</span>> <span class="hljs-keyword" style="color: rgb(133, 153, 0);">implements</span> <span class="hljs-title" style="color: rgb(181, 137, 0);">RequestListener</span><<span class="hljs-title" style="color: rgb(181, 137, 0);">T</span>, <span class="hljs-title" style="color: rgb(181, 137, 0);">R</span>> </span>{<span class="hljs-annotation" style="color: rgb(155, 133, 157);">@Override</span> <span class="hljs-function"><span class="hljs-keyword" style="color: rgb(133, 153, 0);">public</span> <span class="hljs-keyword" style="color: rgb(133, 153, 0);">boolean</span> <span class="hljs-title" style="color: rgb(38, 139, 210);">onException</span><span class="hljs-params" style="color: rgb(102, 0, 102);">(Exception e, Object model, Target target, <span class="hljs-keyword" style="color: rgb(133, 153, 0);">boolean</span> isFirstResource)</span> </span>{android.util.Log.d(<span class="hljs-string" style="color: rgb(42, 161, 152);">"GLIDE"</span>, String.format(Locale.ROOT,<span class="hljs-string" style="color: rgb(42, 161, 152);">"onException(%s, %s, %s, %s)"</span>, e, model, target, isFirstResource), e);<span class="hljs-keyword" style="color: rgb(133, 153, 0);">return</span> <span class="hljs-keyword" style="color: rgb(133, 153, 0);">false</span>; } <span class="hljs-annotation" style="color: rgb(155, 133, 157);">@Override</span> <span class="hljs-function"><span class="hljs-keyword" style="color: rgb(133, 153, 0);">public</span> <span class="hljs-keyword" style="color: rgb(133, 153, 0);">boolean</span> <span class="hljs-title" style="color: rgb(38, 139, 210);">onResourceReady</span><span class="hljs-params" style="color: rgb(102, 0, 102);">(Object resource, Object model, Target target, <span class="hljs-keyword" style="color: rgb(133, 153, 0);">boolean</span> isFromMemoryCache, <span class="hljs-keyword" style="color: rgb(133, 153, 0);">boolean</span> isFirstResource)</span> </span>{android.util.Log.d(<span class="hljs-string" style="color: rgb(42, 161, 152);">"GLIDE"</span>, String.format(Locale.ROOT,<span class="hljs-string" style="color: rgb(42, 161, 152);">"onResourceReady(%s, %s, %s, %s, %s)"</span>, resource, model, target, isFromMemoryCache, isFirstResource));<span class="hljs-keyword" style="color: rgb(133, 153, 0);">return</span> <span class="hljs-keyword" style="color: rgb(133, 153, 0);">false</span>; } 
}</code>

确保在发布应用时移除掉所有的调试log!

更多的log指令

<code class="perl" style="padding: 0px; font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; border: none; background-color: transparent;">cd .../android-sdk/platform-tools
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.AnimatedGifEncoder VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.AssetUriFetcher VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.BitmapEncoder VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.BufferedIs VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.ByteArrayPool VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.CacheLoader VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.ContentLengthStream VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.DecodeJob VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.DiskLruCacheWrapper VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.Downsampler VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.Engine VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.EngineRunnable VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.GenericRequest VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.GifDecoder VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.GifEncoder VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.GifHeaderParser VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.GifResourceDecoder VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.Glide VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.ImageHeaderParser VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.ImageVideoDecoder VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.IVML VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.LocalUriFetcher VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.LruBitmapPool VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.MediaStoreThumbFetcher VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.MemorySizeCalculator VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.PreFillRunner VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.ResourceLoader VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.RMRetriever VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.StreamEncoder VERBOSE
adb shell setprop <span class="hljs-keyword" style="color: rgb(133, 153, 0);">log</span>.tag.TransformationUtils VERBOSE</code>

调试部分参考http://www.jianshu.com/p/9bd6efca8724。好了写到这里,很多方法可以直接去看github上面。

最后提供一个很牛逼的blog:Glide Series Overview

终极网站 glide 全套学习推荐http://mrfu.me/2016/02/27/Glide_Getting_Started/

4
 
1

这篇关于Android图片处理之Glide使用大全的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1075162

相关文章

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

Linux换行符的使用方法详解

《Linux换行符的使用方法详解》本文介绍了Linux中常用的换行符LF及其在文件中的表示,展示了如何使用sed命令替换换行符,并列举了与换行符处理相关的Linux命令,通过代码讲解的非常详细,需要的... 目录简介检测文件中的换行符使用 cat -A 查看换行符使用 od -c 检查字符换行符格式转换将

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

使用Jackson进行JSON生成与解析的新手指南

《使用Jackson进行JSON生成与解析的新手指南》这篇文章主要为大家详细介绍了如何使用Jackson进行JSON生成与解析处理,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1. 核心依赖2. 基础用法2.1 对象转 jsON(序列化)2.2 JSON 转对象(反序列化)3.

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面