I have a MappedByteBuffer with a portion of it containing the bytes of a PNG file.
I want to call: BitmapFactory.decodeByteArray(byte[] data, int offset, int length);
Do I have to move the portion of the MappedByteBuffer into a byte[] or is there some way to just pass the MappedByteBuffer?
Thanks!