I am using the following code to capture the image in Android
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, 100);
After capturing an image, its showing a preview and asking whether to save or discard the image.
Is there anyway where i can avoid this preview?
The Camera app in Android dosent shows the preview. So there should be a way i guess.
Thanks in advance.