Searched defs:ImageCache (Results 1 - 2 of 2) sorted by relevance

/development/samples/training/ContactsList/src/com/example/android/contactslist/util/
H A DImageCache.java32 public class ImageCache { class
33 private static final String TAG = "ImageCache";
37 * Creating a new ImageCache object using the specified parameters.
41 private ImageCache(float memCacheSizePercent) { method in class:ImageCache
46 * Find and return an existing ImageCache stored in a {@link RetainFragment}, if not found a new
51 * @return An existing retained ImageCache object or a new one if one did not exist
53 public static ImageCache getInstance(
59 // See if we already have an ImageCache stored in RetainFragment
60 ImageCache imageCache = (ImageCache) mRetainFragmen
[all...]
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
H A DImageCache.java50 * {@link ImageCache#getInstance(FragmentManager, ImageCacheParams)} to get an instance of this
54 public class ImageCache { class
55 private static final String TAG = "ImageCache";
82 * Create a new ImageCache object using the specified parameters. This should not be
84 * {@link ImageCache#getInstance(FragmentManager, ImageCacheParams)} to fetch an ImageCache
89 private ImageCache(ImageCacheParams cacheParams) { method in class:ImageCache
94 * Return an {@link ImageCache} instance. A {@link RetainFragment} is used to retain the
95 * ImageCache object across configuration changes such as a change in device orientation.
98 * @param cacheParams The cache parameters to use if the ImageCache need
[all...]

Completed in 21 milliseconds