I am using default camera application to capture the image in my application. Right now it is not showing Panorama option.
My current implementation is as follows
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (takePictureIntent.resolveActivity(getActivity().getPackageManager()) != null) {
startActivityForResult(takePictureIntent, GlobalConstants.IMAGE_CAPTURE);
}
Any suggestions, Do I need to send some extra parameters for Panoramic mode?
Thanks in advance