Since: API Level 1
public static interface

Camera.AutoFocusCallback

android.hardware.Camera.AutoFocusCallback

Class Overview

Handles the callback for the camera auto focus.

Devices that do not support auto-focus will receive a "fake" callback to this interface. If your application needs auto-focus and should not be installed on devices without auto-focus, you must declare that your app uses the android.hardware.camera.autofocus feature, in the <uses-feature> manifest element.

Summary

Public Methods
abstract void onAutoFocus(boolean success, Camera camera)
Callback for the camera auto focus.

Public Methods

public abstract void onAutoFocus (boolean success, Camera camera)

Since: API Level 1

Callback for the camera auto focus. If the camera does not support auto-focus and autoFocus is called, onAutoFocus will be called immediately with success.

Parameters
success true if focus was successful, false if otherwise
camera the Camera service object