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

/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
H A DImageCache.java130 Log.d(TAG, "Memory cache created (size = " + mCacheParams.memCacheSize + ")");
138 mMemoryCache = new LruCache<String, BitmapDrawable>(mCacheParams.memCacheSize) {
444 public int memCacheSize = DEFAULT_MEM_CACHE_SIZE; field in class:ImageCache.ImageCacheParams
470 * memCacheSize is stored in kilobytes instead of bytes as this will eventually be passed
484 memCacheSize = Math.round(percent * Runtime.getRuntime().maxMemory() / 1024);

Completed in 383 milliseconds