2016-11-09 124 views
0

是否可以將onProgressUpdate監聽器添加到Glide中。我的意思不是旗Glide onProgressUpdate監聽器

new RequestListener<String, GlideDrawable>() { 
     @Override 
     public boolean onException(Exception e, String model, Target<GlideDrawable> target, boolean isFirstResource) { 
      return false; 
     } 

     @Override 
     public boolean onResourceReady(GlideDrawable resource, String model, Target<GlideDrawable> target, boolean isFromMemoryCache, boolean isFirstResource) { 
      return false; 
     } 
    } 

我的意思是監聽器,即能加載或下載的字節大小期間發佈進度百分比

+1

不知道滑翔,但你可以使用這個庫爲此目的https://github.com/nostra13/Android-Universal-Image-Loader –

+0

@KamranAhmedKhan良好的圖書館,但對我來說一些重量級。想先試試它 – iamthevoid

回答