Back to project page Android-Link-Preview.
The source code is released under:
Apache License
If you think the Android project Android-Link-Preview listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.leocardz.link.preview.library; //from w w w . j a v a 2 s. c o m import android.graphics.Bitmap; import android.widget.ImageView; public interface DowloadImageCallback { /** * * @param imageView * ImageView to receive the bitmap. * @param loadedBitmap * Bitmap downloaded from url. * @param url * Image url. */ void onLoaded(ImageView imageView, Bitmap loadedBitmap, String url); }