I am creating a clothes shopping cart app.
My existing SQLite database has all the items and their information and I need to display each item in a listView. I need to display the item's information such as the brand, price, size, store, etc. and also an image of the item.
So the images of the items aren't in my database though, but I do have them saved in a folder on my computer and I do know which items they go with and also each item in the database does have an id with it.
So in order to show the image with each item and show the correct image in the listView, can I just put all the images into my drawable folder and then match them up on the ID with each item I retrieve from my database?
I already have my listView set up, it's displaying everything except the images for each item, so does anyone know how I can do this?