我正在尝试使用Android Universal Image Loader库从网上下载网址中的图片。但是,URL可能会返回404错误,因为该图片有时尚未被公司上传。我该如何处理?我尝试使用以下但没有效果:
DisplayImageOoptions options = new DisplayImageOptions.Builder()
.cacheInMemory()
.showImageForEmptyUri(R.drawable.no_image)
.build();
有人可以帮助我,指出我正确的方向吗?我非常感激。
答案 0 :(得分:1)
您可以尝试使用:
DisplayImageOoptions options = new DisplayImageOptions.Builder().
cacheInMemory().
showImageOnFail(R.drawable.no_image).
showImageForEmptyUri(R.drawable.no_image).
build();