My application allows it’s user to start a camera intent to take pictures to associate with people and evidence. I want to store the URI in a lookup table (ex: PersonMedia) and load thumbnails of the associated pictures into a gallery view; subsequently allowing the user to view the full image from the thumbnail. Every example I find demonstrates loading thumbnails from the SD Cards full contents but not from specific URI’s.
My second choice being to store the byte array in SQLLite, but I’m not a big fan of that. Any help would be greatly appreciated.
As a side note, in the past I couldn’t figure out how to vote on the correct answer. I finally got it! Yeah, I have my moments…lol.
I solved this by loading images directly from the sd card by providing a dynamic directory path. Recalling the images by storing the URI’s in the database didn’t work the way I expected it to. Here is the code if anyone wants to do the same type thing.
private boolean LoadImageFiles() {