When I launch the camera app manually, I have access to the settings for things like white balance, scale, resolution etc (via icons on the left hand side of the screen). However when I launch the camera via an intent these option icons are not visible:
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photoFile));
startActivityForResult(intent, MainActivity.SET_CUSTOM_PHOTO_FROM_CAMERA);
Is there any way to make the camera settings available when the camera is launched from an intent?