@@ -237,7 +237,7 @@ public void displayImage(String uri, ImageView imageView, DisplayImageOptions op
237
237
238
238
/**
239
239
* Adds load image task to execution pool. Image will be returned with
240
- * {@link ImageLoadingListener#onLoadingComplete(Bitmap) callback}.<br />
240
+ * {@link ImageLoadingListener#onLoadingComplete(String, android.view.View, android.graphics. Bitmap)} callback}.<br />
241
241
* <b>NOTE:</b> {@link #init(ImageLoaderConfiguration)} method must be called before this method call
242
242
*
243
243
* @param uri Image URI (i.e. "http://site.com/image.png", "file:///mnt/sdcard/image.png")
@@ -252,12 +252,12 @@ public void loadImage(String uri, ImageLoadingListener listener) {
252
252
253
253
/**
254
254
* Adds load image task to execution pool. Image will be returned with
255
- * {@link ImageLoadingListener#onLoadingComplete(Bitmap) callback}.<br />
255
+ * {@link ImageLoadingListener#onLoadingComplete(String, android.view.View, android.graphics. Bitmap)} callback}.<br />
256
256
* <b>NOTE:</b> {@link #init(ImageLoaderConfiguration)} method must be called before this method call
257
257
*
258
258
* @param uri Image URI (i.e. "http://site.com/image.png", "file:///mnt/sdcard/image.png")
259
259
* @param minImageSize Minimal size for {@link Bitmap} which will be returned in
260
- * {@linkplain ImageLoadingListener#onLoadingComplete(Bitmap) callback}. Downloaded image will be decoded
260
+ * {@linkplain ImageLoadingListener#onLoadingComplete(String, android.view.View, android.graphics. Bitmap)} callback}. Downloaded image will be decoded
261
261
* and scaled to {@link Bitmap} of the size which is <b>equal or larger</b> (usually a bit larger) than
262
262
* incoming minImageSize .
263
263
* @param listener {@linkplain ImageLoadingListener Listener} for image loading process. Listener fires events on UI
@@ -271,7 +271,7 @@ public void loadImage(String uri, ImageSize minImageSize, ImageLoadingListener l
271
271
272
272
/**
273
273
* Adds load image task to execution pool. Image will be returned with
274
- * {@link ImageLoadingListener#onLoadingComplete(Bitmap) callback}.<br />
274
+ * {@link ImageLoadingListener#onLoadingComplete(String, android.view.View, android.graphics. Bitmap)} callback}.<br />
275
275
* <b>NOTE:</b> {@link #init(ImageLoaderConfiguration)} method must be called before this method call
276
276
*
277
277
* @param uri Image URI (i.e. "http://site.com/image.png", "file:///mnt/sdcard/image.png")
@@ -291,12 +291,12 @@ public void loadImage(String uri, DisplayImageOptions options, ImageLoadingListe
291
291
292
292
/**
293
293
* Adds load image task to execution pool. Image will be returned with
294
- * {@link ImageLoadingListener#onLoadingComplete(Bitmap) callback}.<br />
294
+ * {@link ImageLoadingListener#onLoadingComplete(String, android.view.View, android.graphics. Bitmap)} callback}.<br />
295
295
* <b>NOTE:</b> {@link #init(ImageLoaderConfiguration)} method must be called before this method call
296
296
*
297
297
* @param uri Image URI (i.e. "http://site.com/image.png", "file:///mnt/sdcard/image.png")
298
298
* @param targetImageSize Minimal size for {@link Bitmap} which will be returned in
299
- * {@linkplain ImageLoadingListener#onLoadingComplete(Bitmap) callback}. Downloaded image will be decoded
299
+ * {@linkplain ImageLoadingListener#onLoadingComplete(String, android.view.View, android.graphics. Bitmap)} callback}. Downloaded image will be decoded
300
300
* and scaled to {@link Bitmap} of the size which is <b>equal or larger</b> (usually a bit larger) than
301
301
* incoming minImageSize .
302
302
* @param options {@linkplain DisplayImageOptions Display image options} for image displaying. If <b>null</b> -
@@ -402,7 +402,7 @@ public void cancelDisplayTask(ImageView imageView) {
402
402
* <br />
403
403
* If downloads are denied and if image isn't cached then
404
404
* {@link ImageLoadingListener#onLoadingFailed(String, View, FailReason)} callback will be fired with
405
- * {@link FailReason#NETWORK_DENIED}
405
+ * {@link FailReason.FailType #NETWORK_DENIED}
406
406
*
407
407
* @param denyNetworkDownloads pass <b>true</b> - to deny engine to download images from the network; <b>false</b> -
408
408
* to allow engine to download images from network.
0 commit comments