I have been using App Inventor for about 2 weeks now trying to work on a project I had in my head and have been doing reasonably well by searching online and self-teaching while having absolutely 0 coding experience.
I have run into a little problem though that I can't seem to solve.
I am currently making a listview which populates from a csv file. I've gotten this to work perfectly for text, but now I would like to add an image next to each text line. How? I have tried adding the image to the csv file, and it just brings up the word'Picture' in its place. I really do not want to go through and manually add the item and image individually through the 'ListData' button as the list will continue to grow and is currently at 110 items.
You need to use the "create Element" block (purple) to build text/image elements for the listview, and ensure that you select Main/Detail/Image from the listview menu in the designer.
You will need the actual images somewhere, either in your media folder (assets), somewhere on your device (e.g. a shared directory) or in your ASD. You may want to download your images from an online resource on first run of your app ? Or you could use the online resource directly with urls to the image files. In your csv you can reference the image locations.
Thank you very much for your help! I modified it a little bit as I wanted the list to populate as soon as the screen was opened and managed that as well.