Skip to content

Commit e3f9275

Browse files
committed
Merge branch 'master' into new_disk_cache_api
2 parents 625c297 + 2981122 commit e3f9275

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,7 @@ To provide caching on external storage (SD card) add following permission to And
333333
- Use `.bitmapConfig(Bitmap.Config.RGB_565)` in display options. Bitmaps in RGB_565 consume 2 times less memory than in ARGB_8888.
334334
- Use `.memoryCache(new WeakMemoryCache())` in configuration or disable caching in memory at all in display options (don't call `.cacheInMemory()`).
335335
- Use `.imageScaleType(ImageScaleType.IN_SAMPLE_INT)` in display options. Or try `.imageScaleType(ImageScaleType.EXACTLY)`.
336-
- Avoid using RoundedBitmapDisplayer. It creates new Bitmap object with ARGB_8888 config for displaying during work.
337-
336+
338337
5. For memory cache configuration (`ImageLoaderConfiguration.memoryCache(...)`) you can use already prepared implementations.
339338
* Cache using **only strong** references:
340339
* `LruMemoryCache` (Least recently used bitmap is deleted when cache size limit is exceeded) - **Used by default**

0 commit comments

Comments
 (0)