Android - How To Stop Camera Intent From Saving On The Phone
On my app I'm using the mobile phones camera and saving the image on the sd card. The issue is that the picture is also being saved on the mobile phones memory. Is there any way I
Solution 1:
Unfortunately, I believe this is impossible without root, at least with intents. Your code isn't the issue; it's due to how the camera app works - when the user takes a picture, the camera app itself will save that picture to the device memory and return a Bitmap. So this is entirely out of your control unless you have root and can use reflection to modify the camera app to prevent saving.
The other option is to use the Camera API in your app directly.
Post a Comment for "Android - How To Stop Camera Intent From Saving On The Phone"