转自:https://forums.developer.amazon.com/articles/2707/using-camera2-to-replace-deprecated-camera-api.html

From Android 5.0(API Level 21) the new Camera2 API(android.hardware.Camera2) is introduced which now gives full manual control over Android device cameras. With previous Camera API(android.hardware.Camera), manual controls for the camera were only accessible by making changes to OS and existing APIs which wasn't friendly. The old Camera API (android.hardware.Camera) is now deprecated on Android 5.0 and recommended to use Camera2 API for future apps.

Pre-L Camera API - Limited access to streaming image data Limited information about camera state No manual capture control

Camera2 API - Supports 30fps full resolution with burst mode Supports change on manual camera settings between frame capture Supports RAW image capture Supports Zero Shutter Lag & Movie Snapshot Supports setting other manual camera device controls including level of Noise Cancelling

Resolution

Basic usage of camera is divided with 5 main parts(CameraManager,CameraDevice,CameraCaptureSession,CaptureRequest,CaptureResult)

CameraManager - Provides interfaces for iterating, listing and connecting to CameraDevices http://developer.android.com/reference/android/hardware/camera2/CameraManager.html

CameraDevice - Representation of a single camera connected to an Android device http://developer.android.com/reference/android/hardware/camera2/CameraDevice.html

CameraCaptureSession - Provides set of target output surfaces(TextureView,MediaRecorder,MediaCodec,ImageReader,RenderScriptAllocation) http://developer.android.com/reference/android/hardware/camera2/CameraCaptureSession.html

CaptureRequest - Settings and outputs needed to capture a single image from the camera device Create request builder by predefined templates(TEMPLATE_PREVIEW, TEMPLATE_RECORD, TEMPLATE_STILL_CAPTURE, TEMPLATE_VIDEO_SNAPSHOT, TEMPLATE_MANUAL) This requests are given to capture or setRepeatingRequest to capture images from the camera http://developer.android.com/reference/android/hardware/camera2/CaptureRequest.html

CaptureResult - Results of a single image capture from the image sensorhttp://developer.android.com/reference/android/hardware/camera2/CaptureResult.html

For specifics, you should go through the Camera2 Package Summary page. http://developer.android.com/reference/android/hardware/camera2/package-summary.html

Also there is a great introductory video by Google Developer Advocate on YouTube that explains the changes on Camera2 API: DevBytes: Android L Developer Preview - Camera2 API.

https://www.youtube.com/watch?v=Xtp3tH27OFs

You will need to remember that all features on Camera2 API are not always available on Android device cameras. It all depends on the camera device. In order to check that, use CameraCharacteristics to retrieve camera device feature supported information. characteristics.get(CameraCharacteristics.INFO_SUPPORTED_HARDWARE_LEVEL);

The results will be returned within 3 flavors of camera functionality with the order of FULL > LIMITED > LEGACY:

INFO_SUPPORTED_HARDWARE_LEVEL_FULL - Full hardware level support which allows high resolution capture with support to full manual control. When this is returned, image capture with burst mode and new features will be available.

https://developer.android.com/reference/android/hardware/camera2/CameraCharacteristics.html#INFO_SUPPORTED_HARDWARE_LEVEL

INFO_SUPPORTED_HARDWARE_LEVEL_LIMITED - A LIMITED device may have some or none of the FULL characteristics. Some features are not part of any particular hardware level or capability and must be queried separately.

https://developer.android.com/reference/android/hardware/camera2/CameraCharacteristics.html#INFO_SUPPORTED_HARDWARE_LEVEL

INFO_SUPPORTED_HARDWARE_LEVEL_LEGACY - Cameras on all devices support at least this level. This is the same level as the old Camera API which got deprecated.

https://developer.android.com/reference/android/hardware/camera2/CameraCharacteristics.html#INFO_SUPPORTED_HARDWARE_LEVEL

Although it is recommended to use Camera2 API for future app development, it is only available for usage from Lollipop(API Level 21). It is unlikely that the Camera2 API will backport to the earlier versions of Android, so you will need to keep using the Camera API(android.hardware.Camera) until minSdkVersion rises to 21 or higher. You can make the app distinguish which camera API to use by the following code.

if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) {
     // your code using Camera API here - is between 1-20
} else if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
     // your code using Camera2 API here - is api 21 or higher
}

Keywords: Camera, Deprecated methods, Camera2