public final class

Preview.Builder

extends java.lang.Object

implements UseCaseConfig.Builder<Preview, PreviewConfig, Preview.Builder>, ImageOutputConfig.Builder<Preview.Builder>, ImageInputConfig.Builder<Preview.Builder>, ThreadConfig.Builder<Preview.Builder>

 java.lang.Object

↳androidx.camera.core.Preview.Builder

Overview

Builder for a Preview.

Summary

Constructors
publicBuilder()

Creates a new Builder object.

Methods
public Previewbuild()

Builds an immutable Preview from the current state.

public static Preview.BuilderfromConfig(PreviewConfig configuration)

Generates a Builder from another Config object

public MutableConfiggetMutableConfig()

public PreviewConfiggetUseCaseConfig()

public Preview.BuildersetBackgroundExecutor(java.util.concurrent.Executor executor)

Sets the default executor that will be used for background tasks.

public Preview.BuildersetCaptureOptionUnpacker(CaptureConfig.OptionUnpacker optionUnpacker)

public Preview.BuildersetCaptureType(UseCaseConfigFactory.CaptureType captureType)

public Preview.BuildersetCustomOrderedResolutions(java.util.List<Size> resolutions)

public Preview.BuildersetDefaultCaptureConfig(CaptureConfig captureConfig)

public Preview.BuildersetDefaultResolution(Size resolution)

Sets the default resolution of the intended target from this configuration.

public Preview.BuildersetDefaultSessionConfig(SessionConfig sessionConfig)

public Preview.BuildersetDynamicRange(DynamicRange dynamicRange)

Sets the DynamicRange.

public Preview.BuildersetHighResolutionDisabled(boolean disabled)

public Preview.BuildersetMaxResolution(Size resolution)

public Preview.BuildersetMirrorMode(int mirrorMode)

Sets the mirror mode.

public Preview.BuildersetPreviewStabilizationEnabled(boolean enabled)

Enable preview stabilization.

public Preview.BuildersetResolutionSelector(ResolutionSelector resolutionSelector)

Sets the resolution selector to select the preferred supported resolution.

public Preview.BuildersetSessionOptionUnpacker(SessionConfig.OptionUnpacker optionUnpacker)

public Preview.BuildersetSupportedResolutions(java.util.List<> resolutions)

public Preview.BuildersetSurfaceOccupancyPriority(int priority)

public Preview.BuildersetTargetAspectRatio(int aspectRatio)

Sets the aspect ratio of the intended target for images from this configuration.

public Preview.BuildersetTargetClass(java.lang.Class<Preview> targetClass)

public Preview.BuildersetTargetFrameRate(<any> targetFrameRate)

Sets the target frame rate range in frames per second for the associated Preview use case.

public Preview.BuildersetTargetName(java.lang.String targetName)

Sets the name of the target object being configured, used only for debug logging.

public Preview.BuildersetTargetResolution(Size resolution)

Sets the resolution of the intended target from this configuration.

public Preview.BuildersetTargetRotation(int rotation)

Sets the rotation that the intended target resolution is expressed in.

public Preview.BuildersetZslDisabled(boolean disabled)

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public Builder()

Creates a new Builder object.

Methods

public static Preview.Builder fromConfig(PreviewConfig configuration)

Generates a Builder from another Config object

Parameters:

configuration: An immutable configuration to pre-populate this builder.

Returns:

The new Builder.

public MutableConfig getMutableConfig()

public PreviewConfig getUseCaseConfig()

public Preview build()

Builds an immutable Preview from the current state.

Returns:

A Preview populated with the current state.

public Preview.Builder setTargetClass(java.lang.Class<Preview> targetClass)

public Preview.Builder setTargetName(java.lang.String targetName)

Sets the name of the target object being configured, used only for debug logging.

The name should be a value that can uniquely identify an instance of the object being configured.

If not set, the target name will default to an unique name automatically generated with the class canonical name and random UUID.

Parameters:

targetName: A unique string identifier for the instance of the class being configured.

Returns:

the current Builder.

public Preview.Builder setTargetAspectRatio(int aspectRatio)

Deprecated: use ResolutionSelector with AspectRatioStrategy to specify the preferred aspect ratio settings instead.

Sets the aspect ratio of the intended target for images from this configuration.

The aspect ratio is the ratio of width to height in the sensor orientation.

It is not allowed to set both target aspect ratio and target resolution on the same use case. Attempting so will throw an IllegalArgumentException when building the Config.

The target aspect ratio is used as a hint when determining the resulting output aspect ratio which may differ from the request, possibly due to device constraints. Application code should check the resulting output's resolution and the resulting aspect ratio may not be exactly as requested.

For Preview, the value will be used to calculate the suggested resolution size in SurfaceRequest.getResolution().

If not set, or AspectRatio.RATIO_DEFAULT is supplied, resolutions with aspect ratio 4:3 will be considered in higher priority.

For the following devices, the aspect ratio will be forced to AspectRatio.RATIO_16_9 regardless of the config. On these devices, the camera HAL produces a preview with a 16:9 aspect ratio regardless of the aspect ratio of the preview surface.

  • SM-J710MN, Samsung Galaxy J7 (2016)
  • SM-T580, Samsung Galaxy Tab A J7 (2016)

Parameters:

aspectRatio: The desired Preview AspectRatio

Returns:

The current Builder.

public Preview.Builder setTargetRotation(int rotation)

Sets the rotation that the intended target resolution is expressed in.

This sets the rotation that is used when specifying a target resolution using Preview.Builder.setTargetResolution(Size), which accepts a resolution at the target orientation.

rotation is one of four valid values: , , , . Rotation values are relative to the "natural" rotation, .

For example a portrait natural device may specify a portrait image target resolution as 480x640, and the same device rotated to and displaying in landscape (i.e. as returned by Display) may set the target rotation to and resolution to 640x480.

If not set, the target rotation will default to the value of Display of the default display at the time the use case is created. The use case is fully created once it has been attached to a camera.

Note that does not support non-display rotation. If the target rotation is different than the value of Display, should not be used to provide the in SurfaceRequest.provideSurface(Surface, Executor, Consumer)

Parameters:

rotation: The rotation of the intended target.

Returns:

The current Builder.

See also: Preview.Builder.setTargetResolution(Size)

public Preview.Builder setMirrorMode(int mirrorMode)

Sets the mirror mode.

Valid values include: MirrorMode.MIRROR_MODE_OFF, MirrorMode.MIRROR_MODE_ON and MirrorMode.MIRROR_MODE_ON_FRONT_ONLY. If not set, it defaults to MirrorMode.MIRROR_MODE_ON_FRONT_ONLY.

For API 33 and above, it will change the mirroring behavior for Preview use case. It is calling .

For API 32 and below, it will be no-op.

Parameters:

mirrorMode: The mirror mode of the intended target.

Returns:

The current Builder.

See also:

public Preview.Builder setTargetResolution(Size resolution)

Deprecated: use ResolutionSelector with ResolutionStrategy to specify the preferred resolution settings instead.

Sets the resolution of the intended target from this configuration.

The target resolution attempts to establish a minimum bound for the preview resolution. The actual preview resolution will be the closest available resolution in size that is not smaller than the target resolution, as determined by the Camera implementation. However, if no resolution exists that is equal to or larger than the target resolution, the nearest available resolution smaller than the target resolution will be chosen. Resolutions with the same aspect ratio of the provided will be considered in higher priority before resolutions of different aspect ratios.

It is not allowed to set both target aspect ratio and target resolution on the same use case. Attempting so will throw an IllegalArgumentException when building the Config.

The resolution should be expressed in the coordinate frame after rotating the supported sizes by the target rotation. For example, a device with portrait natural orientation in natural target rotation requesting a portrait image may specify 480x640, and the same device, rotated 90 degrees and targeting landscape orientation may specify 640x480.

The maximum available resolution that could be selected for a Preview is limited to be under 1080p. The limitation of 1080p for Preview has considered both performance and quality factors that users can obtain reasonable quality and smooth output stream under 1080p.

If not set, the default selected resolution will be the best size match to the device's screen resolution, or to 1080p (1920x1080), whichever is smaller. Note that due to compatibility reasons, CameraX may select a resolution that is larger than the default screen resolution on certain devices.

When using the camera-camera2 CameraX implementation, which resolution will be finally selected will depend on the camera device's hardware level and the bound use cases combination. For more details see the guaranteed supported configurations tables in android.hardware.camera2.CameraDevice's Regular capture section.

Parameters:

resolution: The target resolution to choose from supported output sizes list.

Returns:

The current Builder.

public Preview.Builder setDefaultResolution(Size resolution)

Sets the default resolution of the intended target from this configuration.

Parameters:

resolution: The default resolution to choose from supported output sizes list.

Returns:

The current Builder.

public Preview.Builder setMaxResolution(Size resolution)

public Preview.Builder setSupportedResolutions(java.util.List<> resolutions)

public Preview.Builder setCustomOrderedResolutions(java.util.List<Size> resolutions)

public Preview.Builder setResolutionSelector(ResolutionSelector resolutionSelector)

Sets the resolution selector to select the preferred supported resolution.

When using the camera-camera2 CameraX implementation, the selected resolution will be limited by the PREVIEW size which is defined as the best size match to the device's screen resolution, or to 1080p (1920x1080), whichever is smaller. See the Regular capture section in android.hardware.camera2.CameraDevice'. Applications can set any ResolutionStrategy to override it.

Note that due to compatibility reasons, CameraX may select a resolution that is larger than the default screen resolution on certain devices.

The existing Preview.Builder.setTargetResolution(Size) and Preview.Builder.setTargetAspectRatio(int) APIs are deprecated and are not compatible with Preview.Builder.setResolutionSelector(ResolutionSelector). Calling either of these APIs together with Preview.Builder.setResolutionSelector(ResolutionSelector) will result in an java.lang.IllegalArgumentException being thrown when you attempt to build the Preview instance.

Returns:

The current Builder.

public Preview.Builder setDynamicRange(DynamicRange dynamicRange)

Sets the DynamicRange.

Dynamic range specifies how the range of colors, highlights and shadows captured by the frame producer are represented on a display. Some dynamic ranges allow the preview surface to make full use of the extended range of brightness of the display.

The supported dynamic ranges for preview depend on the capabilities of the camera and the ability of the provided by the Preview.SurfaceProvider to consume the dynamic range. The supported dynamic ranges of the camera can be queried using CameraInfo.querySupportedDynamicRanges(Set).

As an example, having written an OpenGL frame processing pipeline that can properly handle input dynamic ranges DynamicRange.SDR, DynamicRange.HLG_10_BIT and DynamicRange.HDR10_10_BIT, it's possible to filter those dynamic ranges based on which dynamic ranges the camera can produce via the Preview use case:

   

        // Constant defining the dynamic ranges supported as input for
        // my OpenGL processing pipeline. These will either be outputted
        // in the same dynamic range as the input or will be tone-mapped
        // to another dynamic range by my pipeline.
        List<DynamicRange> MY_SUPPORTED_DYNAMIC_RANGES = Set.of(
                DynamicRange.SDR,
                DynamicRange.HLG_10_BIT,
                DynamicRange.HDR10_10_BIT);
        ...

        // Query dynamic ranges supported by the camera from the
        // dynamic ranges supported by my processing pipeline.
        mSupportedHighDynamicRanges =
                mCameraInfo.querySupportedDynamicRanges(
                        mySupportedDynamicRanges);

        // Update our UI picker for dynamic range.
        ...


        // Create the Preview use case from the dynamic range
        // selected by the UI picker.
        mPreview = new Preview.Builder()
                .setDynamicRange(mSelectedDynamicRange)
                .build();
   
 

If the dynamic range is not provided, the returned Preview use case will use a default of DynamicRange.UNSPECIFIED. When a Preview is bound with other use cases that specify a dynamic range, such as VideoCapture, and the preview dynamic range is UNSPECIFIED, the resulting dynamic range of the preview will usually match the other use case's dynamic range. If no other use cases are bound with the preview, an UNSPECIFIED dynamic range will resolve to DynamicRange.SDR. When using a Preview with another use case, it is recommended to leave the dynamic range of the Preview as DynamicRange.UNSPECIFIED, so the camera can choose the best supported dynamic range that satisfies the requirements of both use cases.

If an unspecified dynamic range is used, the resolved fully-defined dynamic range of frames sent from the camera will be communicated to the Preview.SurfaceProvider via SurfaceRequest.getDynamicRange(), and the provided should be configured to use that dynamic range.

It is possible to choose a high dynamic range (HDR) with unspecified encoding by providing DynamicRange.HDR_UNSPECIFIED_10_BIT.

Returns:

The current Builder.

See also: DynamicRange, CameraInfo.querySupportedDynamicRanges(Set)

public Preview.Builder setBackgroundExecutor(java.util.concurrent.Executor executor)

Sets the default executor that will be used for background tasks.

If not set, the background executor will default to an automatically generated java.util.concurrent.Executor.

Parameters:

executor: The executor which will be used for background tasks.

Returns:

the current Builder.

public Preview.Builder setTargetFrameRate(<any> targetFrameRate)

Sets the target frame rate range in frames per second for the associated Preview use case.

Device will try to get as close as possible to the target frame rate. This may affect the selected resolutions of the surfaces, resulting in better frame rates at the potential reduction of resolution.

Achieving target frame rate is dependent on device capabilities, as well as other concurrently attached use cases and their target frame rates. Because of this, the frame rate that is ultimately selected is not guaranteed to be a perfect match to the requested target.

Parameters:

targetFrameRate: a desired frame rate range.

Returns:

the current Builder.

public Preview.Builder setPreviewStabilizationEnabled(boolean enabled)

Enable preview stabilization. It will enable stabilization for both the preview and video capture use cases.

Devices running Android 13 or higher can provide support for video stabilization. This feature lets apps provide a what you see is what you get (WYSIWYG) experience when comparing between the camera preview and the recording.

It is recommended to query the device capability via PreviewCapabilities.isStabilizationSupported() before enabling this feature, otherwise HAL error might be thrown.

If both preview stabilization and video stabilization are enabled or disabled, the final result will be

Preview VideoCapture Result
ON ON Both Preview and VideoCapture will be stabilized, VideoCapture quality might be worse than only VideoCapture stabilized
ON OFF None of Preview and VideoCapture will be stabilized
ON NOT SPECIFIED Both Preview and VideoCapture will be stabilized
OFF ON None of Preview and VideoCapture will be stabilized
OFF OFF None of Preview and VideoCapture will be stabilized
OFF NOT SPECIFIED None of Preview and VideoCapture will be stabilized
NOT SPECIFIED ON Only VideoCapture will be stabilized, Preview might be stabilized depending on devices
NOT SPECIFIED OFF None of Preview and VideoCapture will be stabilized

Parameters:

enabled: True if enable, otherwise false.

Returns:

the current Builder.

See also: PreviewCapabilities.isStabilizationSupported()

public Preview.Builder setDefaultSessionConfig(SessionConfig sessionConfig)

public Preview.Builder setDefaultCaptureConfig(CaptureConfig captureConfig)

public Preview.Builder setSessionOptionUnpacker(SessionConfig.OptionUnpacker optionUnpacker)

public Preview.Builder setCaptureOptionUnpacker(CaptureConfig.OptionUnpacker optionUnpacker)

public Preview.Builder setSurfaceOccupancyPriority(int priority)

public Preview.Builder setZslDisabled(boolean disabled)

public Preview.Builder setHighResolutionDisabled(boolean disabled)

public Preview.Builder setCaptureType(UseCaseConfigFactory.CaptureType captureType)