When I have not upgraded to 4.4.2,front camera is supported the screen is opened in landscape mode but when I upgrade to latest version the front mode is not supported in camera and it is rotating to portrait mode .
My source code to open camera is below:
private void getPhotoFromCamera()
{
try
{
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra("android.intent.extras.CAMERA_FACING",1);
VisitorRegistrationFragment.this.startActivityForResult(intent,FROM_CAMERA);
}
catch (Exception e)
{
e.printStackTrace();
}
catch (OutOfMemoryError e)
{
e.printStackTrace();
}
}
Can anyone please help me out on how to open front camera and how to restrict the camera to open only in landscape mode ?