|
| 1 | +--- |
| 2 | +layout: default-layout |
| 3 | +title: Demo & Samples - Dynamsoft Barcode Reader Android Edition |
| 4 | +description: The index of Dynamsoft Barcode Reader Android demo & samples. |
| 5 | +keywords: demo, sample, index, Android |
| 6 | +needAutoGenerateSidebar: true |
| 7 | +noTitleIndex: false |
| 8 | +--- |
| 9 | + |
| 10 | +# Android Barcode Scanner Demo & Samples |
| 11 | + |
| 12 | +- [Android Barcode Scanner Demo \& Samples](#android-barcode-scanner-demo--samples) |
| 13 | + - [Demos](#demos) |
| 14 | + - [Android Barcode Scanner Demo](#android-barcode-scanner-demo) |
| 15 | + - [Android BarcodeScanner Samples](#android-barcodescanner-samples) |
| 16 | + - [ScanSingleBarcode](#scansinglebarcode) |
| 17 | + - [ScanMultipleBarcodes](#scanmultiplebarcodes) |
| 18 | + - [ScenarioOrientedSamples](#scenarioorientedsamples) |
| 19 | + - [Android Foundational API Samples](#android-foundational-api-samples) |
| 20 | + - [Read Single Barcode (With CameraEnhancer)](#read-single-barcode-with-cameraenhancer) |
| 21 | + - [Read Single Barcode (With CameraX)](#read-single-barcode-with-camerax) |
| 22 | + - [Decode Barcodes from an Image](#decode-barcodes-from-an-image) |
| 23 | + - [General Barcode Decoding Settings](#general-barcode-decoding-settings) |
| 24 | + - [Decode Tiny Barcodes](#decode-tiny-barcodes) |
| 25 | + - [Locate an Item with Barcode](#locate-an-item-with-barcode) |
| 26 | + - [Android ID Scanning Samples](#android-id-scanning-samples) |
| 27 | + - [Scan a Driver's License (via PDF417 Barcode)](#scan-a-drivers-license-via-pdf417-barcode) |
| 28 | + - [Other Use Case Samples for Android Platform](#other-use-case-samples-for-android-platform) |
| 29 | + - [Scan VIN Barcode](#scan-vin-barcode) |
| 30 | + |
| 31 | +## Demos |
| 32 | + |
| 33 | +### Android Barcode Scanner Demo |
| 34 | + |
| 35 | +- [View in Google Play Store](https://play.google.com/store/apps/details?id=com.dynamsoft.demo.dynamsoftbarcodereaderdemo&pli=1){:target="_blank"} |
| 36 | +- [Download APK](https://download2.dynamsoft.com/dbr/android/DynamsoftBarcodeReaderDemoAndroid.apk) |
| 37 | + |
| 38 | +## Android BarcodeScanner Samples |
| 39 | + |
| 40 | +The `BarcodeScanner` Android examples show you how to develop and customize your scanner app with the Ready-to-Use component, `BarcodeScanner`, of Dynamsoft Barcode Reader. |
| 41 | + |
| 42 | +### ScanSingleBarcode |
| 43 | + |
| 44 | +Scan a barcode with the ready-to-use UI, `BarcodeScannerActivity`. The scanner always returns a single result. User have to select one barcode if multiple barcodes are scanned. |
| 45 | + |
| 46 | +Check code on GitHub |
| 47 | + |
| 48 | +- [Java](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/BarcodeScannerAPISamples/ScanSingleBarcode) |
| 49 | +- [Kotlin](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/BarcodeScannerAPISamples/ScanSingleBarcodeKt) |
| 50 | + |
| 51 | +### ScanMultipleBarcodes |
| 52 | + |
| 53 | +Scan multiple barcodes with the ready-to-use UI, `BarcodeScannerViewController`. The scanner returns multiple results. |
| 54 | + |
| 55 | +Check code on GitHub |
| 56 | + |
| 57 | +- [Java](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/BarcodeScannerAPISamples/ScanMultipleBarcodes) |
| 58 | + |
| 59 | +### ScenarioOrientedSamples |
| 60 | + |
| 61 | +A collection of samples showing how to use the `BarcodeScanner` component in different scenarios including: |
| 62 | + |
| 63 | +- High-Density QRCode |
| 64 | +- Direct Part Marking (DPM) |
| 65 | +- DotCode |
| 66 | +- Aztec Code |
| 67 | + |
| 68 | +Check code on GitHub |
| 69 | + |
| 70 | +- [Java](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/BarcodeScannerAPISamples/ScenarioOrientedSamples) |
| 71 | + |
| 72 | +## Android Foundational API Samples |
| 73 | + |
| 74 | +The foundational API examples show you how to use the foundational APIs of Dynamsoft Barcoder Reader to develop a full customizable iOS barcode scanner. |
| 75 | + |
| 76 | +### Read Single Barcode (With CameraEnhancer) |
| 77 | + |
| 78 | +Decode barcodes from video streaming. It shows the simplest code to implement a video barcode scanner. |
| 79 | + |
| 80 | +[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/DecodeWithCameraEnhancer){:target="_blank"} |
| 81 | + |
| 82 | +### Read Single Barcode (With CameraX) |
| 83 | + |
| 84 | +Generally the same as `DecodeWithCameraEnhancer` but using `CameraX` library as the input. |
| 85 | + |
| 86 | +[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/DecodeWithCameraX){:target="_blank"} |
| 87 | + |
| 88 | +### Decode Barcodes from an Image |
| 89 | + |
| 90 | +Decode barcodes from an still image. It shows how to select a image from the album and decode it. |
| 91 | + |
| 92 | +[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/DecodeFromAnImage){:target="_blank"} |
| 93 | + |
| 94 | +### General Barcode Decoding Settings |
| 95 | + |
| 96 | +Displays general barcode decoding settings and camera settings like barcode formats, expected barcode count and scan region settings. The default scan mode is continuous scanning. |
| 97 | + |
| 98 | +[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/GeneralSettings){:target="_blank"} |
| 99 | + |
| 100 | +### Decode Tiny Barcodes |
| 101 | + |
| 102 | +The sample to tell you how to process the tiny barcodes including zoom and focus control. |
| 103 | + |
| 104 | +### Locate an Item with Barcode |
| 105 | + |
| 106 | +Input an ID with barcode text and detect it from multiple barcodes under the screen. |
| 107 | + |
| 108 | +[Check code on GitHub](https://github.com/Dynamsoft/barcode-reader-mobile-samples/tree/main/android/FoundationalAPISamples/LocateAnItemWithBarcode){:target="_blank"} |
| 109 | + |
| 110 | +## Android ID Scanning Samples |
| 111 | + |
| 112 | +### Scan a Driver's License (via PDF417 Barcode) |
| 113 | + |
| 114 | +Scan the PDF417 barcodes on a drivers' license and extract the drivers information. |
| 115 | + |
| 116 | +[Check code on GitHub](https://github.com/Dynamsoft/capture-vision-mobile-samples/tree/main/Android/DriversLicenseScanner){:target="_blank"} |
| 117 | + |
| 118 | +## Other Use Case Samples for Android Platform |
| 119 | + |
| 120 | +### Scan VIN Barcode |
| 121 | + |
| 122 | +Scan the vin barcode and extract the vehicle information. |
| 123 | + |
| 124 | +[Check code on GitHub](https://github.com/Dynamsoft/capture-vision-mobile-samples/tree/main/Android/VINScanner){:target="_blank"} |
0 commit comments