fresco加载gif图片到99%卡住的bug

来源:互联网 发布:蔬菜网络采购平台 编辑:程序博客网 时间:2024/06/04 17:45
解决方案,复制HttpUrlConnectionNetworkFetcher类中的代码,新建一个类叫做CustomImageDownloaderFetcher,将fetchSync()方法中的callback.onResponse(is, -1);改为callback.onResponse(is, connection.getContentLength());
再在初始化Fresco时,传入自定义类ImagePipelineConfig.newBuilder(context).setNetworkFetcher(newCustomImageDownloaderFetcher())
原创粉丝点击