Android: How To Capture Image Without Showing Preview
I am using the following code to capture the image in Android Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); startActivityForResult(cameraInte
Solution 1:
The camera app doesn't give other apps the option to disable the confirmation screen, even though the camera app itself doesn't show the confirmation screen.
Therefore it is not possible for not showing the confirmation screen.
However we can achieve this by writing a custom app using the Camera library in android. (see this and this)
Post a Comment for "Android: How To Capture Image Without Showing Preview"