CameraInfo
open classCameraInfo
kotlin.Any | |
↳ | android.hardware.Camera.CameraInfo |
Information about a camera
Summary
Constants | |
---|---|
static Int |
The facing of the camera is opposite to that of the screen. |
static Int |
The facing of the camera is the same as that of the screen. |
Public constructors | |
---|---|
Properties | |
---|---|
Boolean |
Whether the shutter sound can be disabled. |
Int |
The direction that the camera faces. |
Int |
The orientation of the camera image. |
Constants
CAMERA_FACING_BACK
static valCAMERA_FACING_BACK: Int
Deprecated: Deprecated in Java.
The facing of the camera is opposite to that of the screen.
Value: 0
CAMERA_FACING_FRONT
static valCAMERA_FACING_FRONT: Int
Deprecated: Deprecated in Java.
The facing of the camera is the same as that of the screen.
Value: 1
Public constructors
CameraInfo
CameraInfo()
Properties
canDisableShutterSound
varcanDisableShutterSound: Boolean
Deprecated: Deprecated in Java.
Whether the shutter sound can be disabled.
On some devices, the camera shutter sound cannot be turned off through enableShutterSound
. This field can be used to determine whether a call to disable the shutter sound will succeed.
If this field is set to true, then a call of enableShutterSound(false)
will be successful. If set to false, then that call will fail, and the shutter sound will be played when android.hardware.Camera#takePicture is called.
facing
varfacing: Int
Deprecated: Deprecated in Java.
The direction that the camera faces. It should be CAMERA_FACING_BACK or CAMERA_FACING_FRONT.
orientation
varorientation: Int
Deprecated: Deprecated in Java.
The orientation of the camera image. The value is the angle that the camera image needs to be rotated clockwise so it shows correctly on the display in its natural orientation. It should be 0, 90, 180, or 270.
For example, suppose a device has a naturally tall screen. The back-facing camera sensor is mounted in landscape. You are looking at the screen. If the top side of the camera sensor is aligned with the right edge of the screen in natural orientation, the value should be 90. If the top side of a front-facing camera sensor is aligned with the right of the screen, the value should be 270.