Known Direct Subclasses
|
Summary
[Expand]
Inherited Methods |
From class
com.facebook.imagepipeline.image.CloseableImage
abstract
void
|
close()
Closes this instance and releases the resources.
|
void
|
finalize()
Ensures that the underlying resources are always properly released.
|
Map<String, Object>
|
getExtras()
|
QualityInfo
|
getQualityInfo()
Returns quality information for the image.
|
abstract
int
|
getSizeInBytes()
|
abstract
boolean
|
isClosed()
Returns whether this instance is closed.
|
boolean
|
isStateful()
Whether or not this image contains state for a particular view of the image (for example, the
image for an animated GIF might contain the current frame being viewed).
|
void
|
setImageExtras(Map<String, Object> extras)
Sets extras that match mImageExtrasList to this image from supplied extras
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
com.facebook.imagepipeline.image.HasImageMetadata
|
From interface
com.facebook.imagepipeline.image.ImageInfo
|
From interface
java.io.Closeable
|
From interface
java.lang.AutoCloseable
|
Public Constructors
public
CloseableBitmap
()
Public Methods
public
abstract
Bitmap
getUnderlyingBitmap
()
Gets the underlying bitmap. Note: care must be taken because subclasses might be more
sophisticated than that. For example, animated bitmap may have many frames and this method will
only return the first one.