Android APIs
public final class

CameraManager

extends Object
java.lang.Object
   ↳ android.hardware.camera2.CameraManager

Class Overview

A system service manager for detecting, characterizing, and connecting to CameraDevices.

You can get an instance of this class by calling Context.getSystemService().

CameraManager manager = (CameraManager) getSystemService(Context.CAMERA_SERVICE);

For more details about communicating with camera devices, read the Camera developer guide or the camera2 package documentation.

Summary

Nested Classes
class CameraManager.AvailabilityCallback A callback for camera devices becoming available or unavailable to open. 
class CameraManager.TorchCallback A callback for camera flash torch modes becoming unavailable, disabled, or enabled. 
Public Methods
CameraCharacteristics getCameraCharacteristics(String cameraId)

Query the capabilities of a camera device.

String[] getCameraIdList()
Return the list of currently connected camera devices by identifier, including cameras that may be in use by other camera API clients.
void openCamera(String cameraId, CameraDevice.StateCallback callback, Handler handler)
Open a connection to a camera with the given ID.
void registerAvailabilityCallback(CameraManager.AvailabilityCallback callback, Handler handler)
Register a callback to be notified about camera device availability.
void registerTorchCallback(CameraManager.TorchCallback callback, Handler handler)
Register a callback to be notified about torch mode status.
void setTorchMode(String cameraId, boolean enabled)
Set the flash unit's torch mode of the camera of the given ID without opening the camera device.
void unregisterAvailabilityCallback(CameraManager.AvailabilityCallback callback)
Remove a previously-added callback; the callback will no longer receive connection and disconnection callbacks.
void unregisterTorchCallback(CameraManager.TorchCallback callback)
Remove a previously-added callback; the callback will no longer receive torch mode status callbacks.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public CameraCharacteristics getCameraCharacteristics (String cameraId)

Added in API level 21

Query the capabilities of a camera device. These capabilities are immutable for a given camera.

Parameters
cameraId The id of the camera device to query
Returns
  • The properties of the given camera
Throws
IllegalArgumentException if the cameraId does not match any known camera device.
CameraAccessException if the camera device has been disconnected.

public String[] getCameraIdList ()

Added in API level 21

Return the list of currently connected camera devices by identifier, including cameras that may be in use by other camera API clients.

Non-removable cameras use integers starting at 0 for their identifiers, while removable cameras have a unique identifier for each individual device, even if they are the same model.

Returns
  • The list of currently connected camera devices.

public void openCamera (String cameraId, CameraDevice.StateCallback callback, Handler handler)

Added in API level 21

Open a connection to a camera with the given ID.

Use getCameraIdList() to get the list of available camera devices. Note that even if an id is listed, open may fail if the device is disconnected between the calls to getCameraIdList() and openCamera(String, CameraDevice.StateCallback, Handler), or if a higher-priority camera API client begins using the camera device.

As of API level 23, devices for which the onCameraUnavailable(String) callback has been called due to the device being in use by a lower-priority, background camera API client can still potentially be opened by calling this method when the calling camera API client has a higher priority than the current camera API client using this device. In general, if the top, foreground activity is running within your application process, your process will be given the highest priority when accessing the camera, and this method will succeed even if the camera device is in use by another camera API client. Any lower-priority application that loses control of the camera in this way will receive an onDisconnected(CameraDevice) callback.

Once the camera is successfully opened, onOpened(CameraDevice) will be invoked with the newly opened CameraDevice. The camera device can then be set up for operation by calling createCaptureSession(List, CameraCaptureSession.StateCallback, Handler) and createCaptureRequest(int)

If the camera becomes disconnected during initialization after this function call returns, onDisconnected(CameraDevice) with a CameraDevice in the disconnected state (and onOpened(CameraDevice) will be skipped).

If opening the camera device fails, then the device callback's onError method will be called, and subsequent calls on the camera device will throw a CameraAccessException.

Parameters
cameraId The unique identifier of the camera device to open
callback The callback which is invoked once the camera is opened
handler The handler on which the callback should be invoked, or null to use the current thread's looper.
Throws
CameraAccessException if the camera is disabled by device policy, has been disconnected, or is being used by a higher-priority camera API client.
IllegalArgumentException if cameraId or the callback was null, or the cameraId does not match any currently or previously available camera device.
SecurityException if the application does not have permission to access the camera

public void registerAvailabilityCallback (CameraManager.AvailabilityCallback callback, Handler handler)

Added in API level 21

Register a callback to be notified about camera device availability.

Registering the same callback again will replace the handler with the new one provided.

The first time a callback is registered, it is immediately called with the availability status of all currently known camera devices.

onCameraUnavailable(String) will be called whenever a camera device is opened by any camera API client. As of API level 23, other camera API clients may still be able to open such a camera device, evicting the existing client if they have higher priority than the existing client of a camera device. See open() for more details.

Since this callback will be registered with the camera service, remember to unregister it once it is no longer needed; otherwise the callback will continue to receive events indefinitely and it may prevent other resources from being released. Specifically, the callbacks will be invoked independently of the general activity lifecycle and independently of the state of individual CameraManager instances.

Parameters
callback the new callback to send camera availability notices to
handler The handler on which the callback should be invoked, or null to use the current thread's looper.
Throws
IllegalArgumentException if the handler is null but the current thread has no looper.

public void registerTorchCallback (CameraManager.TorchCallback callback, Handler handler)

Added in API level 23

Register a callback to be notified about torch mode status.

Registering the same callback again will replace the handler with the new one provided.

The first time a callback is registered, it is immediately called with the torch mode status of all currently known camera devices with a flash unit.

Since this callback will be registered with the camera service, remember to unregister it once it is no longer needed; otherwise the callback will continue to receive events indefinitely and it may prevent other resources from being released. Specifically, the callbacks will be invoked independently of the general activity lifecycle and independently of the state of individual CameraManager instances.

Parameters
callback The new callback to send torch mode status to
handler The handler on which the callback should be invoked, or null to use the current thread's looper.
Throws
IllegalArgumentException if the handler is null but the current thread has no looper.

public void setTorchMode (String cameraId, boolean enabled)

Added in API level 23

Set the flash unit's torch mode of the camera of the given ID without opening the camera device.

Use getCameraIdList() to get the list of available camera devices and use getCameraCharacteristics(String) to check whether the camera device has a flash unit. Note that even if a camera device has a flash unit, turning on the torch mode may fail if the camera device or other camera resources needed to turn on the torch mode are in use.

If setTorchMode(String, boolean) is called to turn on or off the torch mode successfully, onTorchModeChanged(String, boolean) will be invoked. However, even if turning on the torch mode is successful, the application does not have the exclusive ownership of the flash unit or the camera device. The torch mode will be turned off and becomes unavailable when the camera device that the flash unit belongs to becomes unavailable or when other camera resources to keep the torch on become unavailable ( onTorchModeUnavailable(String) will be invoked). Also, other applications are free to call setTorchMode(String, boolean) to turn off the torch mode ( onTorchModeChanged(String, boolean) will be invoked). If the latest application that turned on the torch mode exits, the torch mode will be turned off.

Parameters
cameraId The unique identifier of the camera device that the flash unit belongs to.
enabled The desired state of the torch mode for the target camera device. Set to true to turn on the torch mode. Set to false to turn off the torch mode.
Throws
CameraAccessException if it failed to access the flash unit. CAMERA_IN_USE will be thrown if the camera device is in use. MAX_CAMERAS_IN_USE will be thrown if other camera resources needed to turn on the torch mode are in use. CAMERA_DISCONNECTED will be thrown if camera service is not available.
IllegalArgumentException if cameraId was null, cameraId doesn't match any currently or previously available camera device, or the camera device doesn't have a flash unit.

public void unregisterAvailabilityCallback (CameraManager.AvailabilityCallback callback)

Added in API level 21

Remove a previously-added callback; the callback will no longer receive connection and disconnection callbacks.

Removing a callback that isn't registered has no effect.

Parameters
callback The callback to remove from the notification list

public void unregisterTorchCallback (CameraManager.TorchCallback callback)

Added in API level 23

Remove a previously-added callback; the callback will no longer receive torch mode status callbacks.

Removing a callback that isn't registered has no effect.

Parameters
callback The callback to remove from the notification list