滑动onProgressUpdate侦听器

时间:2016-11-09 11:09:27

标签: android android-glide

是否可以将onProgressUpdate侦听器添加到Glide。我不是指标准

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 个答案:

答案 0 :(得分:0)

你不能只使用Glide,API不提供这样的选项,在Glide GitHub

进行对话

其中一个帖子提供了混合Glide和OkHttp的方法,您可以在https://gist.github.com/TWiStErRob/08d5807e396740e52c90

中看到

Here我找到了一种更近期的方法