| layout | default-layout |
|---|---|
| title | EnumScanningMode - Dynamsoft Barcode Reader Android Edition |
| description | EnumScanningMode of Dynamsoft Barcode Reader Android is an enumeration class that defines the result status of the BarcodeScanResult. |
| keywords | scan modes, scanning modes, single, multiple barcodes |
| needAutoGenerateSidebar | true |
| needGenerateH3Content | true |
| breadcrumbText | EnumScanningMode |
EnumScanningMode is an enumeration class that defines the scanning mode.
If the status is finished, that indicates that the result has been decoded and is available - while canceled indicates that the operation has been halted. If the result status is exception, then that means that an error has occurred during the barcode detection process.
Assembly: DynamsoftBarcodeReaderBundle.aar
Namespace: com.dynamsoft.dbrbundle.ui
@IntDef(value = {SM_SINGLE, SM_MULTIPLE})
public @interface EnumScanningMode {
// The scan mode for scanning single barcode.
int SM_SINGLE = 0;
// The scan mode for scanning multiple barcodes.
int SM_MULTIPLE = 1;
}