通用图像加载器 - 图像URL 404错误处理

时间:2013-08-12 14:14:49

标签: android http-status-code-404 universal-image-loader

我正在尝试使用Android Universal Image Loader库从网上下载网址中的图片。但是,URL可能会返回404错误,因为该图片有时尚未被公司上传。我该如何处理?我尝试使用以下但没有效果:

DisplayImageOoptions options = new DisplayImageOptions.Builder()
  .cacheInMemory()
  .showImageForEmptyUri(R.drawable.no_image)
  .build();

有人可以帮助我,指出我正确的方向吗?我非常感激。

1 个答案:

答案 0 :(得分:1)

您可以尝试使用:

DisplayImageOoptions options = new    DisplayImageOptions.Builder().
cacheInMemory().
showImageOnFail(R.drawable.no_image).
showImageForEmptyUri(R.drawable.no_image).
build();