1.i have written code to take an image by android phone
2. i got current location of the user
Now i want to save this image in sqlite db along with current gps location So that one could view image in Map with its tagged details.
Please help. I am very new to android.
This link can be used for storing the image as a blob file and retrieving it.
My advice would be like instead of saving the image to sqliteDB, better just save the path of the image. Directly saving in the sqliteDB will result in increase in the application memory usage. This way you can depend on SD card.
Hope that helps 🙂