API Diff Specification | |
To Version: | Android SDK 0.9_r1 |
From Version: | Android SDK m5-rc14 |
Generated | 2008.08.14 15:44 |
Added Methods | |
---|---|
void copyPixelsToBuffer(Buffer ) |
Copy the bitmap's pixels into the specified buffer (allocated by the caller). |
Bitmap createScaledBitmap(Bitmap, |
|
int describeContents() |
No special parcel contents. |
Config getConfig() |
If the bitmap's internal config is in one of the public formats, return that config, otherwise return null. |
int getRowBytes() |
Return the number of bytes between rows in the bitmap's pixels. |
boolean isRecycled() |
Returns true if this bitmap has been recycled. |
void recycle() |
Free up the memory associated with this bitmap's pixels, and mark the bitmap as "dead", meaning it will throw an exception if getPixels() or setPixels() is called, and will draw nothing. |
Changed Methods | ||
---|---|---|
void writeToParcel(Parcel, |
Change in signature from Parcel to (Parcel, int ). |
Write the bitmap and its pixels to the parcel. |
Bitmap createBitmap(int[], |
Change in signature from (int, int, boolean ) to (int[], int, int, int, int, Config ). |
Returns a immutable bitmap with the specified width and height, with each pixel value set to the corresponding value in the colors array. |
©2008 Google - Code Home - Site Terms of Service - Privacy Policy |