Stay organized with collections
Save and categorize content based on your preferences.
Camera.AutoFocusCallback
public
static
interface
Camera.AutoFocusCallback
android.hardware.Camera.AutoFocusCallback
|
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 completion of 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)
Called when the camera auto focus completes.
|
Public methods
onAutoFocus
public abstract void onAutoFocus (boolean success,
Camera camera)
Called when the camera auto focus completes. If the camera
does not support auto-focus and autoFocus is called,
onAutoFocus will be called immediately with a fake value of
success
set to true
.
The auto-focus routine does not lock auto-exposure and auto-white
balance after it completes.
Parameters |
success |
boolean : true if focus was successful, false if otherwise |
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 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# Camera.AutoFocusCallback\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \nDeprecated in [API level\n21](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\nCamera.AutoFocusCallback\n========================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/hardware/Camera.AutoFocusCallback \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\nstatic\n\n\ninterface\nCamera.AutoFocusCallback\n`\n\n\n`\n\n\n`\n\n|-------------------------------------------|\n| android.hardware.Camera.AutoFocusCallback |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\n\n**This interface was deprecated\nin API level 21.** \n\nWe recommend using the new [android.hardware.camera2](/reference/android/hardware/camera2/package-summary) API for new\napplications.\n\nCallback interface used to notify on completion of camera auto focus.\n\nDevices that do not support auto-focus will receive a \"fake\"\ncallback to this interface. If your application needs auto-focus and\nshould not be installed on devices *without* auto-focus, you must\ndeclare that your app uses the\n`android.hardware.camera.autofocus` feature, in the\n[\\\u003cuses-feature\\\u003e](/guide/topics/manifest/uses-feature-element)\nmanifest element.\n\n\u003cbr /\u003e\n\n**See also:**\n\n- [Camera.autoFocus(AutoFocusCallback)](/reference/android/hardware/Camera#autoFocus(android.hardware.Camera.AutoFocusCallback))\n\nSummary\n-------\n\n| ### Public methods ||\n|------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` abstract void` | ` `[onAutoFocus](/reference/android/hardware/Camera.AutoFocusCallback#onAutoFocus(boolean,%20android.hardware.Camera))`(boolean success, `[Camera](/reference/android/hardware/Camera)` camera) ` Called when the camera auto focus completes. |\n\nPublic methods\n--------------\n\n### onAutoFocus\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic abstract void onAutoFocus (boolean success, \n Camera camera)\n```\n\nCalled when the camera auto focus completes. If the camera\ndoes not support auto-focus and autoFocus is called,\nonAutoFocus will be called immediately with a fake value of\n`success` set to `true`.\n\nThe auto-focus routine does not lock auto-exposure and auto-white\nbalance after it completes.\n\n\u003cbr /\u003e\n\n| Parameters ||\n|-----------|--------------------------------------------------------------------|\n| `success` | `boolean`: true if focus was successful, false if otherwise \u003cbr /\u003e |\n| `camera` | `Camera`: the Camera service object \u003cbr /\u003e |\n\n**See also:**\n\n- [Camera.Parameters.setAutoExposureLock(boolean)](/reference/android/hardware/Camera.Parameters#setAutoExposureLock(boolean))\n- [Camera.Parameters.setAutoWhiteBalanceLock(boolean)](/reference/android/hardware/Camera.Parameters#setAutoWhiteBalanceLock(boolean))"]]