B C D G I O P R S T U V 

B

BitmapLruCache - Class in uk.co.senab.bitmapcache
A cache which can be set to use multiple layers of caching for Bitmap objects in an Android app.
BitmapLruCache.Builder - Class in uk.co.senab.bitmapcache
Builder class for {link BitmapLruCache.
BitmapLruCache.Builder() - Constructor for class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Deprecated.
You should now use Builder(Context). This is so that we can reliably set up correctly.
BitmapLruCache.Builder(Context) - Constructor for class uk.co.senab.bitmapcache.BitmapLruCache.Builder
 
BitmapLruCache.RecyclePolicy - Enum in uk.co.senab.bitmapcache
The recycle policy controls if the Bitmap.recycle() is automatically called, when it is no longer being used.
build() - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
 

C

CacheableBitmapDrawable - Class in uk.co.senab.bitmapcache
 
CacheableImageView - Class in uk.co.senab.bitmapcache
 
CacheableImageView(Context) - Constructor for class uk.co.senab.bitmapcache.CacheableImageView
 
CacheableImageView(Context, AttributeSet) - Constructor for class uk.co.senab.bitmapcache.CacheableImageView
 
CacheableImageView(Context, AttributeSet, int) - Constructor for class uk.co.senab.bitmapcache.CacheableImageView
 
contains(String) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Returns whether any of the enabled caches contain the specified URL.
containsInDiskCache(String) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Returns whether the Disk Cache contains the specified URL.
containsInMemoryCache(String) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Returns whether the Memory Cache contains the specified URL.

D

draw(Canvas) - Method in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 

G

get(String) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Returns the value for url.
get(String, BitmapFactory.Options) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Returns the value for url.
getFromDiskCache(String, BitmapFactory.Options) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Returns the value for url in the disk cache only.
getFromMemoryCache(String) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Returns the value for url in the memory cache only.
getSource() - Method in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 
getUrl() - Method in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 

I

isBeingDisplayed() - Method in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 
isBitmapMutable() - Method in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 
isBitmapValid() - Method in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
Returns true when this wrapper has a bitmap and the bitmap has not been recycled.
isDiskCacheEnabled() - Method in class uk.co.senab.bitmapcache.BitmapLruCache
 
isMemoryCacheEnabled() - Method in class uk.co.senab.bitmapcache.BitmapLruCache
 
isReferencedByCache() - Method in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 

O

onDetachedFromWindow() - Method in class uk.co.senab.bitmapcache.CacheableImageView
 

P

put(String, Bitmap) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Caches bitmap for url into all enabled caches.
put(String, Bitmap, Bitmap.CompressFormat, int) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Caches bitmap for url into all enabled caches.
put(String, InputStream) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Caches resulting bitmap from inputStream for url into all enabled caches.
put(String, InputStream, BitmapFactory.Options) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Caches resulting bitmap from inputStream for url into all enabled caches.

R

remove(String) - Method in class uk.co.senab.bitmapcache.BitmapLruCache
Removes the entry for url from all enabled caches, if it exists.

S

setBeingUsed(boolean) - Method in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
Used to signal to the Drawable whether it is being used or not.
setDiskCacheEnabled(boolean) - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Set whether the Disk Cache should be enabled.
setDiskCacheLocation(File) - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Set the Disk Cache location.
setDiskCacheMaxSize(long) - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Set the maximum number of bytes the Disk Cache should use to store values.
setImageDrawable(Drawable) - Method in class uk.co.senab.bitmapcache.CacheableImageView
 
setImageResource(int) - Method in class uk.co.senab.bitmapcache.CacheableImageView
 
setImageURI(Uri) - Method in class uk.co.senab.bitmapcache.CacheableImageView
 
setMemoryCacheEnabled(boolean) - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Set whether the Memory Cache should be enabled.
setMemoryCacheMaxSize(int) - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Set the maximum number of bytes the Memory Cache should use to store values.
setMemoryCacheMaxSizeUsingHeapSize() - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Sets the Memory Cache maximum size to be the default value of % of heap size.
setMemoryCacheMaxSizeUsingHeapSize(float) - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Sets the Memory Cache maximum size to be the given percentage of heap size.
setRecyclePolicy(BitmapLruCache.RecyclePolicy) - Method in class uk.co.senab.bitmapcache.BitmapLruCache.Builder
Sets the recycle policy.
SOURCE_INBITMAP - Static variable in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 
SOURCE_NEW - Static variable in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 
SOURCE_UNKNOWN - Static variable in class uk.co.senab.bitmapcache.CacheableBitmapDrawable
 

T

trimMemory() - Method in class uk.co.senab.bitmapcache.BitmapLruCache
This method iterates through the memory cache (if enabled) and removes any entries which are not currently being displayed.

U

uk.co.senab.bitmapcache - package uk.co.senab.bitmapcache
 

V

valueOf(String) - Static method in enum uk.co.senab.bitmapcache.BitmapLruCache.RecyclePolicy
Returns the enum constant of this type with the specified name.
values() - Static method in enum uk.co.senab.bitmapcache.BitmapLruCache.RecyclePolicy
Returns an array containing the constants of this enum type, in the order they are declared.
B C D G I O P R S T U V 

Copyright © 2013. All Rights Reserved.