Back to project page photos.
The source code is released under:
MIT License
If you think the Android project photos 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.ericfarraro.sdk.interfaces; //from w ww . j av a 2 s . c om import android.graphics.Bitmap; import android.widget.ImageView; /** * Created by Eric on 10/8/2014. */ public interface ImageDownloadCompleted { public void onImageDownloadCompleted(final ImageView imageView, final Bitmap bitmap); }