Back to project page webimageloader.
The source code is released under:
Apache License
If you think the Android project webimageloader 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.webimageloader.loader; /*from ww w . j ava 2 s . c o m*/ import java.util.Iterator; import com.webimageloader.util.InputSupplier; import android.graphics.Bitmap; public interface Loader { interface Listener { void onStreamLoaded(InputSupplier input, Metadata metadata); void onBitmapLoaded(Bitmap b, Metadata metadata); void onNotModified(Metadata metadata); void onError(Throwable t); } void load(LoaderWork.Manager manager, LoaderRequest request); }