Contains information about a Tile that is returned by a TileProvider.
| public final byte[] | data | A byte array containing the image data. |
| public final int | height | The height of the image encoded by
data
in pixels. |
| public final int | width | The width of the image encoded by data
in pixels. |
| void |
writeToParcel(Parcel out, int
flags)
|
A byte array containing the image data. The image will be created from this data by
calling
BitmapFactory.decodeByteArray(byte[], int, int). Other than in the case of
TileProvider.NO_TILE,
data should never be null.
The height of the image encoded by data
in pixels.
The width of the image encoded by data
in pixels.
Constructs a Tile.
| width | the width of the image in pixels |
|---|---|
| height | the height of the image in pixels |
| data | A byte array containing the image data. The image will be created from this
data by calling
BitmapFactory.decodeByteArray(byte[], int, int). Except for
TileProvider.NO_TILE,
data should never be null. |