public static interface Camera.AutoFocusMoveCallback
android.hardware.Camera.AutoFocusMoveCallback |
This interface was deprecated in API level 21.
We recommend using the new android.hardware.camera2
API for new applications.
Callback interface used to notify on auto focus start and stop.
This is only supported in continuous autofocus modes -- FOCUS_MODE_CONTINUOUS_VIDEO
and FOCUS_MODE_CONTINUOUS_PICTURE
. Applications can show autofocus animation based on this.
Public methods |
|
---|---|
abstract void |
onAutoFocusMoving(boolean start, Camera camera) Called when the camera auto focus starts or stops. |
void onAutoFocusMoving (boolean start, Camera camera)
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 |