Lines Matching full:imageloader
56 <li>{@code ImageLoader}—a helper class that handles loading and caching images from
57 remote URLs. {@code ImageLoader} is a an orchestrator for large numbers of {@code ImageRequest}s,
59 {@code ImageLoader} provides an in-memory cache to sit in front of the normal Volley
62 using disk I/O. {@code ImageLoader} also does response coalescing, without which almost
66 <li>{@code NetworkImageView}—builds on {@code ImageLoader} and effectively replaces
103 <h3>Use ImageLoader and NetworkImageView</h3>
105 <p>You can use {@code ImageLoader} and {@code NetworkImageView} in concert to efficiently
116 <p>You can use {@code ImageLoader} by itself to display an image, for example:</p>
119 ImageLoader mImageLoader;
127 // Get the ImageLoader through your singleton class.
129 mImageLoader.get(IMAGE_URL, ImageLoader.getImageListener(mImageView,
137 ImageLoader mImageLoader;
146 // Get the ImageLoader through your singleton class.
150 // specify the ImageLoader that will be used to make the request.
154 <p>The above snippets access the {@code RequestQueue} and the {@code ImageLoader}
158 {@code ImageLoader} (the helper class that handles loading and caching images) is that
161 {@code ImageLoader} in an activity, the {@code ImageLoader} would be recreated along with
168 specified directory. But to use {@code ImageLoader}, you should provide a custom
169 in-memory LRU bitmap cache that implements the {@code ImageLoader.ImageCache} interface.
176 {@code ImageLoader.ImageCache} interface:</p>
182 import com.android.volley.toolbox.ImageLoader.ImageCache;
224 <p>Here is an example of how to instantiate an {@code ImageLoader} to use this
229 ImageLoader mImageLoader = new ImageLoader(mRequestQueue, new LruBitmapCache(