Stay organized with collections Save and categorize content based on your preferences.

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 -- Camera.Parameters.FOCUS_MODE_CONTINUOUS_VIDEO and Camera.Parameters.FOCUS_MODE_CONTINUOUS_PICTURE. Applications can show autofocus animation based on this.

Summary

Public methods

abstract void onAutoFocusMoving(boolean start, Camera camera)

Called when the camera auto focus starts or stops.

Public methods

onAutoFocusMoving

public abstract 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

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2022-02-10 UTC.