Java tutorial
//package com.java2s; //License from project: Apache License import android.hardware.Camera; public class Main { public static int getCameraOrientation() { Camera.CameraInfo cameraInfo = getCameraInfo(); return cameraInfo.orientation; } private static Camera.CameraInfo getCameraInfo() { Camera.CameraInfo info = new Camera.CameraInfo(); for (int i = 0; i < Camera.getNumberOfCameras(); i++) { Camera.getCameraInfo(i, info); if (info.facing == Camera.CameraInfo.CAMERA_FACING_BACK) { break; } } return info; } }