1

在我的 monodroid 应用程序中,我使用通用图像加载器在列表视图中显示图像。在显示图像之前,我会在图像上显示一个进度条。我想为下载失败添加默认图像。是否可以?这是我用它显示图像的代码:

    ImageLoader = Com.Nostra13.Universalimageloader.Core.ImageLoader.Instance;
ImageLoader.DisplayImage(myobject.Images [0], imageView,  Application.Options, newImageLoaderListener (progressbar));

这是一个 monodroid 代码。谢谢。

4

1 回答 1

3

为此使用ImageLoadingListener.onLoadingFailed()。在 中显示您的图像onLoadingFailed()

于 2012-12-17T13:58:38.890 回答