Back to project page ion.
The source code is released under:
Apache License
If you think the Android project ion 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.koushikdutta.ion.builder; /* w ww.j a v a2s .c o m*/ import android.widget.ImageView; import com.koushikdutta.async.future.Future; import com.koushikdutta.ion.future.ImageViewFuture; /** * Created by koush on 5/30/13. */ public interface LoadImageViewFutureBuilder { /** * Perform the request and get the result as a Bitmap, which will then be loaded * into the given ImageView * @param url * @return */ public ImageViewFuture load(String url); /** * Perform the request and get the result as a Bitmap, which will then be loaded * into the given ImageView * @param method * @param url * @return */ public Future<ImageView> load(String method, String url); }