Interface BarcodeScanService

All Known Implementing Classes:
AndroidBarcodeScanService, DummyBarcodeScanService, IOSBarcodeScanService

public interface BarcodeScanService
The barcode scanner can be used to scan barcodes of different types. The implementation of the service will typically open the device's camera to scan for a barcode. When a valid barcode could be detected and scanned, the string value that is represented by the barcode will be returned as a result.

Example

 BarcodeScanService.create().ifPresent(service -> {
      service.resultProperty().addListener((obs, ov, nv) ->
          System.out.printf("Scanned result: %s", nv.getResult()));
      service.asyncScan();
  });

Requirements

The service requires the following changes on Android and iOS.

However, these are handled automatically by the GluonFX plugin, when used.

Android Configuration

The permission android.permission.CAMERA needs to be added together with the following activity configuration that handles the SCAN intent of the BarcodeScanService.

 <manifest ...>
    <uses-permission android:name="android.permission.CAMERA"/>
    ...
    <application ...>
      ...
      <activity android:name="com.gluonhq.helloandroid.zxing.CaptureActivity"
                android:screenOrientation="sensorLandscape"
                android:clearTaskOnLaunch="true"
                android:stateNotNeeded="true"
                android:windowSoftInputMode="stateAlwaysHidden">
        <intent-filter>
          <action android:name="com.gluonhq.attach.barcodescan.android.SCAN"/>
          <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
      </activity>
      <activity android:name="com.gluonhq.impl.attach.plugins.android.PermissionRequestActivity" />
    </application>
  </manifest>

iOS Configuration

The following keys are required:

 <key>NSCameraUsageDescription</key>
  <string>Reason to use Camera Service (iOS 10+)</string>
Since:
3.0.0
  • Property Summary

    Properties
    Type
    Property
    Description
    javafx.beans.property.ReadOnlyStringProperty
    A read-only property containing the result of the scan.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Starts up the scanner functionality (commonly provided via the camera), and then parsed by Attach to determine the string the barcode represents.
    void
    asyncScan(String title, String legend, String resultText)
    Starts up the scanner functionality (commonly provided via the camera), and then parsed by Attach to determine the string the barcode represents.
    Returns an instance of BarcodeScanService.
    javafx.beans.property.ReadOnlyStringProperty
    A read-only property containing the result of the scan.
    Deprecated.
    This method has been deprecated in favour of asyncScan().
    scan(String title, String legend, String resultText)
    Deprecated.
    This method has been deprecated in favour of asyncScan(String, String, String).
  • Property Details

    • result

      javafx.beans.property.ReadOnlyStringProperty resultProperty
      A read-only property containing the result of the scan.
      Since:
      4.0.16
  • Method Details

    • create

      static Optional<BarcodeScanService> create()
      Returns an instance of BarcodeScanService.
      Returns:
      An instance of BarcodeScanService.
    • asyncScan

      void asyncScan()
      Starts up the scanner functionality (commonly provided via the camera), and then parsed by Attach to determine the string the barcode represents.
      Since:
      4.0.16
    • scan

      Deprecated.
      This method has been deprecated in favour of asyncScan().
      Starts up the scanner functionality (commonly provided via the camera), in a blocking way, and then parsed by Attach to determine the string the barcode represents.
      Returns:
      Returns an Optional containing the parsed string. The Optional may be empty if the String fails to be parsed for any reason, or if the user cancels the operation.
    • asyncScan

      void asyncScan(String title, String legend, String resultText)
      Starts up the scanner functionality (commonly provided via the camera), and then parsed by Attach to determine the string the barcode represents.
      Parameters:
      title - The title of the scan view. If null or empty nothing will be displayed.
      legend - An explanatory message displayed in the scan view. If null or empty nothing will be displayed.
      resultText - The text to display when the scan ends successfully, before the scanned text. If empty or null, the result won't be shown.
      Since:
      4.0.16
    • scan

      @Deprecated Optional<String> scan(String title, String legend, String resultText)
      Deprecated.
      This method has been deprecated in favour of asyncScan(String, String, String).
      Starts up the scanner functionality (commonly provided via the camera), in a blocking way, and then parsed by Attach to determine the string the barcode represents.
      Parameters:
      title - The title of the scan view. If null or empty nothing will be displayed.
      legend - An explanatory message displayed in the scan view. If null or empty nothing will be displayed.
      resultText - The text to display when the scan ends successfully, before the scanned text. If empty or null, the result won't be shown.
      Returns:
      Returns an Optional containing the parsed string. The Optional may be empty if the String fails to be parsed for any reason, or if the user cancels the operation.
      Since:
      3.8.0
    • resultProperty

      javafx.beans.property.ReadOnlyStringProperty resultProperty()
      A read-only property containing the result of the scan.
      Since:
      4.0.16