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

public static interface Camera.PreviewCallback

android.hardware.Camera.PreviewCallback



This interface was deprecated in API level 21.
We recommend using the new android.hardware.camera2 API for new applications.

Callback interface used to deliver copies of preview frames as they are displayed.

Summary

Public methods

abstract void onPreviewFrame(byte[] data, Camera camera)

Called as preview frames are displayed.

Public methods

onPreviewFrame

public abstract void onPreviewFrame (byte[] data, 
                Camera camera)

Called as preview frames are displayed. This callback is invoked on the event thread Camera.open(int) was called from.

If using the ImageFormat.YV12 format, refer to the equations in Camera.Parameters#setPreviewFormat for the arrangement of the pixel data in the preview callback buffers.

Parameters
data byte: the contents of the preview frame in the format defined by ImageFormat, which can be queried with Camera.Parameters.getPreviewFormat(). If Camera.Parameters.setPreviewFormat(int) is never called, the default will be the YCbCr_420_SP (NV21) format.
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.