The Excel library for android currently doesn't support images.
That's right.
In fact, as far as I know, there is no way to add an image to a cell in Excel.
Image support in Excel itself is quite tricky actually.
You can surely add images to a worksheet but they are not stored inside cells. They are shown as a "pop-up" in the worksheet page instead.
It's possible to bind images to cells, but that demands handling of image and cell size, renaming cell ranges, etc... Doing it by hand isn't quite straightforward, yet I know it can be done with VBA code, but I'm not sure B4x Excel libs would do it.
My approach would be:
- Save regular SQLite data to Excel rows/columns;
- Store image files outside the Excel workbook and store a link to those files in the corresponding row/column.
That's what have come to my mind so far...