AutoFocusMoveCallback
interfaceAutoFocusMoveCallback
android.hardware.Camera.AutoFocusMoveCallback |
Callback interface used to notify on auto focus start and stop.
This is only supported in continuous autofocus modes -- android.hardware.Camera.Parameters#FOCUS_MODE_CONTINUOUS_VIDEO
and android.hardware.Camera.Parameters#FOCUS_MODE_CONTINUOUS_PICTURE
. Applications can show autofocus animation based on this.
Summary
Public methods | |
---|---|
abstract Unit |
onAutoFocusMoving(start: Boolean, camera: Camera!) Called when the camera auto focus starts or stops. |
Public methods
onAutoFocusMoving
Added in API level 16
abstract funonAutoFocusMoving(
start: Boolean,
camera: Camera!
): Unit
Deprecated: Deprecated in Java.
Called when the camera auto focus starts or stops.
Parameters | |
---|---|
start |
Boolean: true if focus starts to move, false if focus stops to move |
camera |
Camera!: the Camera service object |