使用 Glide、Picasso、Coli、Fresco 加载图像时出错

Error while loading image with Glide, Picasso , Coli , Fresco

我无法从 API 加载图像 https://github.com/Teknologica/meta-weather-test-app because I use this URL https://www.metaweather.com/static/img/weather/s.svg 永远不会在 glide 和 Picasso 中加载图像 return 我下面的错误。

错误java.lang.RuntimeException: setDataSource failed: status = 0x80000000

我阅读了文档,错误是因为 0x80000000 表示文件不完整、已损坏或类似情况。但是如果你去 URL 查看完整的图像。

我的线圈代码很简单

imageView.load("https://www.metaweather.com/static/img/weather/s.svg")

毕加索

 Picasso.with(context)
                .load(String.format(ConstantesRetrofit.API_FILES_URL, estadoClimaSufijo))
                .error(R.drawable.ic_cloud)
                .into(holder.iVTipoClima);

就是这样我对帮助我的人感到很高兴

你可以看看这个样本:https://github.com/bumptech/glide/blob/master/samples/svg/src/main/java/com/bumptech/glide/samples/svg/MainActivity.java