Data Capture View

Defined in package com.scandit.datacapture.core.ui

DataCaptureView
class DataCaptureView : RelativeLayout

Added in version 6.0.0

The capture view is the main UI view to be used together with the data capture context for applications that wish to display a video preview together with additional augmentations such as barcode locations.

The data capture view itself only displays the preview and shows UI elements to control the camera, such as buttons to switch torch on and off, or a button to switch between front and back facing cameras. Augmentations, such as the locations of identified barcodes are provided by individual overlays. This view will also display errors in case something goes wrong with its context, see the ContextStatus for a list of possible errors.

Unless otherwise specified, methods and properties of this class should only be accessed from the main thread.

Related topics: Get Started With Barcode Capture, Get Started With MatrixScan, Core Concepts of the Scandit Data Capture SDK.

newInstance(context, dataCaptureContext)
static @NonNull DataCaptureView newInstance(@NonNull Context context,
        DataCaptureContext dataCaptureContext)

Added in version 6.0.0

Initializes a new data capture view. When a data capture context is provided, the view is associated with the context.

The data capture context can be changed at a later point by setting the dataCaptureContext property.

dataCaptureContext
@Nullable DataCaptureContext getDataCaptureContext()
void setDataCaptureContext(@Nullable DataCaptureContext value)

Added in version 6.0.0

The data capture context of this capture view. This property must be set to an instance of the data capture context for this view to display anything.

When the capture context is attached to a data capture view, it is removed from any other data capture view it was attached to.

addOverlay(overlay)
void addOverlay(@NonNull DataCaptureOverlay overlay)

Added in version 6.0.0

Adds the overlay to this data capture view. If the overlay is already part of this view, the call has no effect.

removeOverlay(overlay)
void removeOverlay(@NonNull DataCaptureOverlay overlay)

Added in version 6.0.0

Removes overlay from this data capture view. If the overlay is not part of this view, the call has no effect.

addControl(control)
void addControl(@NonNull Control control)

Added in version 6.0.0

Adds the control to the data capture view. In case multiple controls get added, the order in which addControl() gets called determines how the controls are going to be laid out. If the control is already part of this view, the call has no effect.

Adds the control to the data capture view. Each control will have a default offset from the sides of the data capture view, and will be placed at a specific anchor:

Only one control per type can be added at any point in time, trying to add a second instance of the same control type will result in the first one being removed. Adding a control at an anchor already taken will replace the previous control there. If you need to place multiple controls at the same anchor, consider using LinearControlGroup.

addControl(control, anchor, offset)
void addControl(Control control,
        Anchor anchor,
        PointWithUnit offset)

Added in version 6.14.0

Adds the control to the data capture view at the specified anchor and with the given offset. Only one control per type can be added at any point in time, trying to add a second instance of the same control type will result in the first one being removed. Adding a control at an anchor already taken will replace the previous control there. The offset x will move the control away from the border of the data capture view horizontally, which means that controls anchored on the left will move to the right and vice-versa. Controls anchored in the center horizontally will also move to the right. The offset y will move the control away from the border of the data capture view vertically, which means that controls anchored on the top will move downward and controls anchored to the bottom will move upward. Controls anchored in the center vertically will also move upward.

Adds the control to the data capture view at the specified anchor and with the given offset. Only one control per type can be added at any point in time, trying to add a second instance of the same control type will result in the first one being removed. Adding a control at an anchor already taken will replace the previous control there. If you need to place multiple controls at the same anchor, consider using LinearControlGroup. The offset x will move the control away from the border of the data capture view horizontally, which means that controls anchored on the left will move to the right and vice-versa. Controls anchored in the center horizontally will also move to the right. The offset y will move the control away from the border of the data capture view vertically, which means that controls anchored on the top will move downward and controls anchored to the bottom will move upward. Controls anchored in the center vertically will also move upward.

removeControl(control)
void removeControl(@NonNull Control control)

Added in version 6.0.0

Removes the previously added control from data capture view. If the control is not part of this view, the call has no effect.

addListener(listener)
void addListener(@NonNull DataCaptureViewListener listener)

Added in version 6.0.0

Adds the listener to this data capture view.

In case the same listener is already observing this instance, calling this method will not add the listener again.

removeListener(listener)
void removeListener(@NonNull DataCaptureViewListener listener)

Added in version 6.0.0

Removes a previously added listener from this data capture view.

In case the listener is not currently observing this instance, calling this method has no effect.

addListener(listener)
void addListener(DataCaptureViewSizeListener listener)

Added in version 6.7.0

Adds the listener to this data capture view.

In case the same listener is already observing this instance, calling this method will not add the listener again.

removeListener(listener)
void removeListener(DataCaptureViewSizeListener listener)

Added in version 6.7.0

Removes a previously added listener from this data capture view.

In case the listener is not currently observing this instance, calling this method has no effect.

mapFramePointToView(point)
@NonNull Point mapFramePointToView(@NonNull Point point)

Added in version 6.0.0

Converts a point in the coordinate system of the last visible frame and maps it to a coordinate in the view.

This method is thread-safe and can be called from any thread.

mapFrameQuadrilateralToView(quadrilateral)
@NonNull Quadrilateral mapFrameQuadrilateralToView(
        @NonNull Quadrilateral quadrilateral)

Added in version 6.0.0

Converts a quadrilateral in the coordinate system of the last visible frame and maps it to a coordinate in the view.

scanAreaMargins
@NonNull MarginsWithUnit getScanAreaMargins()
void setScanAreaMargins(@NonNull MarginsWithUnit value)

Added in version 6.0.0

The margins to use for the scan area. The margins are measured from the border of the data capture view and allow to specify a region around the border that is excluded from scanning.

By default, the margins are zero and the scanning happens in the visible part of the preview.

pointOfInterest
@NonNull PointWithUnit getPointOfInterest()
void setPointOfInterest(@NonNull PointWithUnit value)

Added in version 6.0.0

The point of interest of this data capture view. By default, the point of interest is centered in the data capture view. The point of interest is used to control the center of attention for the following subsystems:

  • Auto focus and exposure metering of the camera.

  • Location selections for capture modes that support them. When no location selection is set, the point of interest defines the location at which the recognition optimizes for reading codes/text/etc.

  • Rendered viewfinders.

The point of interest can be overwritten by individual capture modes such as BarcodeCapture. The overwriting point of interest only affects the center of the location selection and viewfinder of said mode, it does not affect the auto focus or exposure metering of the camera.

logoStyle
LogoStyle getLogoStyle()
void setLogoStyle(LogoStyle value)

Added in version 6.8.0

The style of the logo which can be either the default extended “Scanning By Scandit” or a minimal “Scandit”.

This property has no effect when the logo is drawn by one of the viewfinders.

logoAnchor
Anchor getLogoAnchor()
void setLogoAnchor(Anchor value)

Added in version 6.0.0

The anchor point to use for positioning the “Scanning By Scandit” logo. By default the logo is placed in the lower-right corner of the scan area (Anchor.BOTTOM_RIGHT).

To shift the logo relative to the anchor position, use the logoOffset property.

This property has no effect when the logo is drawn by one of the viewfinders.

logoOffset
@NonNull PointWithUnit getLogoOffset()
void setLogoOffset(@NonNull PointWithUnit value)

Added in version 6.0.0

The offset applied to the “Scanning By Scandit” logo relative to the logo anchor. When specified in pixels (MeasureUnit.PIXEL) or device-independent pixels (MeasureUnit.DIP), the offset is used as-is. When specified as a fraction (MeasureUnit.FRACTION), the offset is computed relative to the view size minus the scan area margins. For example, a value of 0.1 for the x-coordinate will set the offset to be 10% of the view width minus the left and right margins.

This property has no effect when the logo is drawn by one of the viewfinders.

focusGesture
@Nullable FocusGesture getFocusGesture()
void setFocusGesture(@Nullable FocusGesture value)

Added in version 6.6.0

The gesture used to focus. Defaults to TapToFocus. Set to null if no focus gesture is desired.

zoomGesture
@Nullable ZoomGesture getZoomGesture()
void setZoomGesture(@Nullable ZoomGesture value)

Added in version 6.6.0

The gesture used to zoom. Defaults to SwipeToZoom. Set to null if no zoom gesture is desired.

setProperty(name, value)
void setProperty(@NonNull String name,
        @NonNull Object value)

Added in version 6.0.0

Sets a custom property on this data capture view. This function is for internal use. Any features and functionality offered through this method can and will vanish without public notice from one version to the next.