Skip to content

Commit b7e5077

Browse files
Merge pull request #385 from dynamsoft-docs/preview
Preview
2 parents adb8563 + 52b701e commit b7e5077

File tree

17 files changed

+1846
-231
lines changed

17 files changed

+1846
-231
lines changed

_includes/android_sample_index.html

Lines changed: 830 additions & 0 deletions
Large diffs are not rendered by default.

_includes/ios_sample_index.html

Lines changed: 858 additions & 0 deletions
Large diffs are not rendered by default.

programming/android/samples/index.md

Lines changed: 2 additions & 117 deletions
Original file line numberDiff line numberDiff line change
@@ -4,122 +4,7 @@ title: Demo & Samples - Dynamsoft Barcode Reader Android Edition
44
description: The index of Dynamsoft Barcode Reader Android demo & samples.
55
keywords: demo, sample, index, Android
66
needAutoGenerateSidebar: true
7-
noTitleIndex: false
7+
noTitleIndex: true
88
---
99

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

0 commit comments

Comments
 (0)