What I’m trying to do
I am struggling to embed pictures and render them on Android.
I aim for a DailyNote with a dataview table that query for the notes that I create throughout the day, capturing a journal moment in individual AtomicNotes.
These AtomicNotes contain the fields Status, Date, Emoji, Journal, and Images.
The DailyNote table should render Status + Date + Emoji in the same column and, Journal + Images in another column.
I think that the dataview query is OK but this issue is dependent on the syntaxis I use when embedding the Image in the AtomicNote.
- I can only get it working on Windows with the absolute path of the images in my vault 
- I don’t get it working on Android with the absolute path of the images in my vault 
- My AtomicNotes that contains this picture is not even called by the query when using the Android path.
If this issue with the images can be fixed. I would like to do the same in the future for other media, Audio and Video, and maybe with PDFs.
Things I have tried
Experiment 01. How I expected to be
Image field embedded using ![[]]
Images:: ![[xxxx.jpg|300]]
The query works but only with independent columns per field.
TABLE WITHOUT ID
(Status + dateformat(Date,"HH:mm ") + Emoji) as “”,
Journal, Imagenes
FROM “”
But the image doesn’t render when merging the fields in the query.
TABLE WITHOUT ID
(Status + dateformat(Date,"HH:mm ") + Emoji) as “”,
(Journal + Imagenes) as “Journal”
FROM “”
Experiment 02. How I made it work in Windows
Image field using ![]()
Images:: 
This query works as I want in Windows but it doesn’t work on Android
TABLE WITHOUT ID
(Status + dateformat(Date,"HH:mm ") + Emoji) as “”,
(Journal + Imagenes) as “Journal”
FROM “”
Windows
Android
Thank you
Thanks in advance, this is my first post and I hope you understand what I am struggling with. Let me know if something is not clear. And apologies if this was already solved somewhere else, I couldn’t find it