Skip to content

Commit 8059c23

Browse files
Updated side list and fixing bugs
1 parent d5b71da commit 8059c23

16 files changed

Lines changed: 13 additions & 327 deletions

_includes/sidelist-programming/programming-android.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<li lang="android"><a href="{{ site.android }}user-guide/capabilities/customize-ui-index.html" class="otherLinkColour">UI & UX Customization</a>
5353
<ul lang="android">
5454
<li lang="android"><a href="{{ site.android }}user-guide/capabilities/add-functional-buttons.html" class="otherLinkColour">Add Functional Buttons</a></li>
55-
<li lang="android"><a href="{{ site.android }}user-guide/capabilities/add-graphics.html" class="otherLinkColour">Customize Overly with DrawingItems</a></li>
55+
<li lang="android"><a href="{{ site.android }}user-guide/capabilities/add-graphics.html" class="otherLinkColour">Customize Overlay with DrawingItems</a></li>
5656
<li lang="android"><a href="{{ site.android }}user-guide/capabilities/scan-region-style.html" class="otherLinkColour">Scan Region Style</a></li>
5757
<li lang="android"><a href="{{ site.android }}user-guide/capabilities/feedback.html" class="otherLinkColour">User Feedback</a></li>
5858
</ul>

programming/android/api-reference/auxiliary-DataMatrixDetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ breadcrumbText: DataMatrixDetails
1010

1111
# DataMatrixDetails
1212

13-
`DataMatrixDetails` extends the [`DSBarcodeDetails`](barcode-details.md) class and represents detailed information about a Data Matrix barcode.
13+
`DataMatrixDetails` extends the [`BarcodeDetails`](barcode-details.md) class and represents detailed information about a Data Matrix barcode.
1414

1515
## Definition
1616

programming/android/api-reference/barcode-scanner/barcode-scan-result.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ class BarcodeScanResult
2626

2727
| Method | Description |
2828
| ------ | ----------- |
29-
| [`getBarcodes`](#getbarcodes) | Returns an array of [`BarcodeResultItem`]({{ site.dbr_android_api }}barcode-result-item.html), which represents a single barocde result. |
29+
| [`getBarcodes`](#getbarcodes) | Returns an array of [`BarcodeResultItem`]({{ site.dbr_android_api }}barcode-result-item.html), which represents a single barcode result. |
3030
| [`getResultStatus`](#getresultstatus) | Returns the status of the `BarcodeScanResult`, which can indicate success or failure. |
3131
| [`getErrorCode`](#geterrorcode) | Returns the error code should something go wrong during the barcode recognition process. |
3232
| [`getErrorString`](#geterrorstring) | Returns the error message associated with the error code should something go wrong during the barcode recognition process. |
3333

3434
### getBarcodes
3535

36-
Returns an array of [`BarcodeResultItem`]({{ site.dbr_android_api }}barcode-result-item.html), which represents a single barocde result and is the most basic unit of the captured results.
36+
Returns an array of [`BarcodeResultItem`]({{ site.dbr_android_api }}barcode-result-item.html), which represents a single barcode result and is the most basic unit of the captured results.
3737

3838
```java
3939
BarcodeResultItem[] getBarcodes();

programming/android/api-reference/barcode-scanner/enum-scanning-mode.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: default-layout
33
title: EnumScanningMode - Dynamsoft Barcode Reader Android Edition
4-
description: EnumScanningMode of Dynamsoft Barcode Reader Android is an enumeration class that defines the result status of the BarcodeScanResult.
4+
description: EnumScanningMode of Dynamsoft Barcode Reader Android is an enumeration class that defines the scanning mode.
55
keywords: scan modes, scanning modes, single, multiple barcodes
66
needAutoGenerateSidebar: true
77
needGenerateH3Content: true
@@ -10,9 +10,7 @@ breadcrumbText: EnumScanningMode
1010

1111
# EnumScanningMode
1212

13-
`EnumScanningMode` is an enumeration class that defines the scanning mode.
14-
15-
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.
13+
`EnumScanningMode` is an enumeration class that defines the scanning mode. Currently, it is use for switching between single-barcode and multi-barcode scanning modes.
1614

1715
## Definition
1816

programming/android/api-reference/enum/barcode-format.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ public @interface EnumBarcodeFormat {
7272
/**Code 11.*/
7373
public static final long BF_CODE_11 = 1L << 21;
7474
/**Decode barcode with 2 digital addons.*/
75-
public static final long BF_TWO_DIGIT_ADD_ON = 1L << 22,
75+
public static final long BF_TWO_DIGIT_ADD_ON = 1L << 22;
7676
/**Decode barcode with 5 digital addons.*/
77-
public static final long BF_FIVE_DIGIT_ADD_ON = 1L << 23,
77+
public static final long BF_FIVE_DIGIT_ADD_ON = 1L << 23;
7878
/**Code 32*/
7979
public static final long BF_CODE_32 = 1L << 24;
8080
/**PDF417 barcode.*/

programming/android/api-reference/enum/deblur-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public @interface EnumDeblurMode {
4040
/**Reserved setting for deblur mode.*/
4141
public static final int DM_REV = -2147483648;
4242
/**Skips the deblur process.*/
43-
public static final int DM_SKIP = 0x00
43+
public static final int DM_SKIP = 0x00;
4444
/**Placeholder value with no functional meaning.*/
4545
public static final int DM_END=0xFFFFFFFF;
4646
}

programming/android/user-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ public class MainActivity extends AppCompatActivity {
333333
// The following settings will display a scan region on the view. Only the barcode in the scan region can be decoded.
334334
config.setScanRegion(new DSRect(0.15f, 0.25f, 0.85f, 0.65f, true));
335335
// The following code enables the beep sound when a barcode is scanned.
336-
config.setBeepEnabled = true
336+
config.setBeepEnabled(true);
337337
// The following code controls whether to display a torch button.
338338
config.setTorchButtonVisible(true);
339339
// The following code controls whether to display a close button.

programming/android/user-guide/capabilities/add-graphics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ needGenerateH3Content: true
88
noTitleIndex: true
99
---
1010

11-
# Customize Overly with DrawingItems
11+
# Customize Overlay with DrawingItems
1212

1313
`CameraView` allows you to define your own graphics diplaying rules with the `Drawing` APIs.
1414

programming/android/user-guide/capabilities/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Find the feature you need quickly by keyword.
8181

8282
<div class="capabilities-grid">
8383
<a class="capability-link-card" href="{{ site.android }}user-guide/capabilities/add-functional-buttons.html">Add Functional Buttons</a>
84-
<a class="capability-link-card" href="{{ site.android }}user-guide/capabilities/add-graphics.html">Customize Overly with DrawingItems</a>
84+
<a class="capability-link-card" href="{{ site.android }}user-guide/capabilities/add-graphics.html">Customize Overlay with DrawingItems</a>
8585
<a class="capability-link-card" href="{{ site.android }}user-guide/capabilities/scan-region-style.html">Scan Region Style</a>
8686
<a class="capability-link-card" href="{{ site.android }}user-guide/capabilities/feedback.html">User Feedback</a>
8787
</div>

programming/android/user-guide/capabilities/parse-drivers-license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,4 +135,4 @@ cvr.addResultReceiver(object: CapturedResultReceiver{
135135
| sex | Sex |
136136
| issuedDate | Date on which the document was issued |
137137

138-
View more [Drivers License fields]({{ site.code_types }}gs1-ai.html).
138+
View more [Drivers License fields]({{ site.code_types }}aamva-dl-id.html).

0 commit comments

Comments
 (0)