Back to project page volley.
The source code is released under:
Apache License
If you think the Android project volley 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.android.volley.ext.display; //w ww .j a v a2 s . com import android.graphics.Bitmap; import android.view.View; import com.android.volley.ext.tools.BitmapTools.BitmapDisplayConfig; public interface IDisplayer { void loadCompletedisplay(View imageView, Bitmap bitmap, BitmapDisplayConfig config); void loadFailDisplay(View view, BitmapDisplayConfig config); void loadDefaultDisplay(View view, BitmapDisplayConfig config); }