I have a few questions about database storage and retrieval of images. I have an activity that prompts the user to either take a picture using the camera or selecting an existing from the gallery. When a picture has been taken/selected, it is shown in the activity and should be saved in a sqlite database (I use my own content provider).
Should I store the images as a blob or store them seperately and then only store the URI pointing to the requested image?
How do I show the image and save it?