Interface | Description |
---|---|
ArrayAdapterInterface<T> |
Interface for handling operations on a primitive array type.
|
ArrayPool |
Interface for an array pool that pools arrays of different types.
|
BitmapPool |
An interface for a pool that allows users to reuse
Bitmap objects. |
Class | Description |
---|---|
BitmapPoolAdapter | |
ByteArrayAdapter |
Adapter for handling primitive byte arrays.
|
IntegerArrayAdapter |
Adapter for handling primitive int arrays.
|
LruArrayPool |
A fixed size Array Pool that evicts arrays using an LRU strategy to keep the pool under
the maximum byte size.
|
LruBitmapPool |
An
BitmapPool implementation that uses an
LruPoolStrategy to bucket Bitmap s
and then uses an LRU eviction policy to evict Bitmap s from the least
recently used bucket in order to keep the pool below a given maximum size limit. |
SizeConfigStrategy |
Keys
Bitmaps using both
Bitmap.getAllocationByteCount() and the
Bitmap.Config returned from
Bitmap.getConfig() . |