Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
barcode-scan
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Andrés Branas
barcode-scan
Commits
7d145bb6
Commit
7d145bb6
authored
May 22, 2018
by
Alberto Doval
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added preliminary support for zebra mc33 scanner
parent
e3357f3b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
512 additions
and
7 deletions
+512
-7
plugin.xml
+7
-2
src/android/barcode-scan.gradle
+5
-3
src/android/com/cocodin/barcodescan/plugin/BarcodeScan.java
+7
-2
src/android/com/cocodin/barcodescan/plugin/devices/ZebraMC33.java
+493
-0
src/libs/com.symbol.emdk.jar
+0
-0
No files found.
plugin.xml
View file @
7d145bb6
...
@@ -31,14 +31,19 @@
...
@@ -31,14 +31,19 @@
<config-file
target=
"AndroidManifest.xml"
parent=
"/manifest"
>
<config-file
target=
"AndroidManifest.xml"
parent=
"/manifest"
>
<uses-permission
android:name=
"android.permission.CAMERA"
/>
<uses-permission
android:name=
"android.permission.CAMERA"
/>
<uses-permission
android:name=
"com.honeywell.decode.permission.DECODE"
/>
<uses-permission
android:name=
"com.honeywell.decode.permission.DECODE"
/>
<uses-permission
android:name=
"com.symbol.emdk.permission.EMDK"
/>
</config-file>
<config-file
target=
"AndroidManifest.xml"
parent=
"/application"
>
<uses-library
android:name=
"com.symbol.emdk"
/>
</config-file>
</config-file>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/BarcodeScan.java"
target-dir=
"src/com/cocodin/barcodescan/plugin"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/BarcodeScan.java"
target-dir=
"src/com/cocodin/barcodescan/plugin"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/BaseScan.java"
target-dir=
"src/com/cocodin/barcodescan/plugin"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/BaseScan.java"
target-dir=
"src/com/cocodin/barcodescan/plugin"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/C4050.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/C4050.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/Camera.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/Camera.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/EDA50K.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/EDA50K.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/NQuire300.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/NQuire300.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/android/com/cocodin/barcodescan/plugin/devices/ZebraMC33.java"
target-dir=
"src/com/cocodin/barcodescan/plugin/devices"
/>
<source-file
src=
"src/libs/DeviceAPIver20160627.jar"
target-dir=
"libs"
/>
<source-file
src=
"src/libs/DeviceAPIver20160627.jar"
target-dir=
"libs"
/>
<source-file
src=
"src/libs/arm64-v8a/libbarcodereader44.so"
target-dir=
"libs/arm64-v8a"
/>
<source-file
src=
"src/libs/arm64-v8a/libbarcodereader44.so"
target-dir=
"libs/arm64-v8a"
/>
...
@@ -67,6 +72,6 @@
...
@@ -67,6 +72,6 @@
<source-file
src=
"src/libs/armeabi-v7a/libIAL.so"
target-dir=
"libs/armeabi-v7a"
/>
<source-file
src=
"src/libs/armeabi-v7a/libIAL.so"
target-dir=
"libs/armeabi-v7a"
/>
<source-file
src=
"src/libs/armeabi-v7a/libSDL.so"
target-dir=
"libs/armeabi-v7a"
/>
<source-file
src=
"src/libs/armeabi-v7a/libSDL.so"
target-dir=
"libs/armeabi-v7a"
/>
<source-file
src=
"src/libs/DataCollection.jar"
target-dir=
"libs"
/>
<source-file
src=
"src/libs/DataCollection.jar"
target-dir=
"libs"
/>
<source-file
src=
"src/libs/com.symbol.emdk.jar"
target-dir=
"libs"
/>
</platform>
</platform>
</plugin>
</plugin>
src/android/barcode-scan.gradle
View file @
7d145bb6
...
@@ -5,7 +5,8 @@ allprojects {
...
@@ -5,7 +5,8 @@ allprojects {
}
}
dependencies
{
dependencies
{
compile
'com.android.support:support-v4:18.0.0'
implementation
'com.android.support:support-v4:27.0.1'
compile
files
(
'libs/DeviceAPIver20160627.jar'
)
implementation
files
(
'libs/DeviceAPIver20160627.jar'
)
compile
files
(
'libs/DataCollection.jar'
)
implementation
files
(
'libs/DataCollection.jar'
)
implementation
files
(
'libs/com.symbol.emdk.jar'
)
}
}
\ No newline at end of file
src/android/com/cocodin/barcodescan/plugin/BarcodeScan.java
View file @
7d145bb6
...
@@ -30,7 +30,9 @@ public class BarcodeScan extends CordovaPlugin {
...
@@ -30,7 +30,9 @@ public class BarcodeScan extends CordovaPlugin {
public
static
final
String
EDA50K
=
"EDA50K"
;
public
static
final
String
EDA50K
=
"EDA50K"
;
public
static
JSONArray
jaDevices
=
new
JSONArray
(
Arrays
.
asList
(
CAMERA
,
C4050
,
NQUIRE300
,
EDA50K
));
public
static
final
String
ZEBRAMC33
=
"ZebraMC33"
;
public
static
JSONArray
jaDevices
=
new
JSONArray
(
Arrays
.
asList
(
CAMERA
,
C4050
,
NQUIRE300
,
EDA50K
,
ZEBRAMC33
));
private
BaseScan
mDevice
;
private
BaseScan
mDevice
;
...
@@ -56,6 +58,8 @@ public class BarcodeScan extends CordovaPlugin {
...
@@ -56,6 +58,8 @@ public class BarcodeScan extends CordovaPlugin {
mDevices
.
put
(
EDA50K
,
new
com
.
cocodin
.
barcodescan
.
plugin
.
devices
.
EDA50K
(
cordova
,
webView
));
mDevices
.
put
(
EDA50K
,
new
com
.
cocodin
.
barcodescan
.
plugin
.
devices
.
EDA50K
(
cordova
,
webView
));
}
else
if
(
C4050
.
equalsIgnoreCase
(
deviceName
))
{
}
else
if
(
C4050
.
equalsIgnoreCase
(
deviceName
))
{
mDevices
.
put
(
C4050
,
new
com
.
cocodin
.
barcodescan
.
plugin
.
devices
.
C4050
(
cordova
,
webView
));
mDevices
.
put
(
C4050
,
new
com
.
cocodin
.
barcodescan
.
plugin
.
devices
.
C4050
(
cordova
,
webView
));
}
else
if
(
ZEBRAMC33
.
equalsIgnoreCase
(
deviceName
))
{
mDevices
.
put
(
ZEBRAMC33
,
new
com
.
cocodin
.
barcodescan
.
plugin
.
devices
.
ZebraMC33
(
cordova
,
webView
));
}
else
if
(
NQUIRE300
.
equalsIgnoreCase
(
deviceName
))
{
}
else
if
(
NQUIRE300
.
equalsIgnoreCase
(
deviceName
))
{
mDevices
.
put
(
NQUIRE300
,
new
com
.
cocodin
.
barcodescan
.
plugin
.
devices
.
NQuire300
(
cordova
,
webView
));
mDevices
.
put
(
NQUIRE300
,
new
com
.
cocodin
.
barcodescan
.
plugin
.
devices
.
NQuire300
(
cordova
,
webView
));
}
else
{
}
else
{
...
@@ -139,4 +143,4 @@ public class BarcodeScan extends CordovaPlugin {
...
@@ -139,4 +143,4 @@ public class BarcodeScan extends CordovaPlugin {
super
.
onDestroy
();
super
.
onDestroy
();
}
}
}
}
\ No newline at end of file
src/android/com/cocodin/barcodescan/plugin/devices/ZebraMC33.java
0 → 100644
View file @
7d145bb6
package
com
.
cocodin
.
barcodescan
.
plugin
.
devices
;
import
android.util.Log
;
import
com.cocodin.barcodescan.plugin.BaseScan
;
import
com.symbol.emdk.EMDKManager
;
import
com.symbol.emdk.EMDKManager.EMDKListener
;
import
com.symbol.emdk.EMDKManager.FEATURE_TYPE
;
import
com.symbol.emdk.EMDKResults
;
import
com.symbol.emdk.barcode.BarcodeManager
;
import
com.symbol.emdk.barcode.BarcodeManager.ConnectionState
;
import
com.symbol.emdk.barcode.BarcodeManager.ScannerConnectionListener
;
import
com.symbol.emdk.barcode.ScanDataCollection
;
import
com.symbol.emdk.barcode.ScanDataCollection.ScanData
;
import
com.symbol.emdk.barcode.Scanner
;
import
com.symbol.emdk.barcode.Scanner.DataListener
;
import
com.symbol.emdk.barcode.Scanner.StatusListener
;
import
com.symbol.emdk.barcode.Scanner.TriggerType
;
import
com.symbol.emdk.barcode.ScannerConfig
;
import
com.symbol.emdk.barcode.ScannerException
;
import
com.symbol.emdk.barcode.ScannerInfo
;
import
com.symbol.emdk.barcode.ScannerResults
;
import
com.symbol.emdk.barcode.StatusData
;
import
com.symbol.emdk.barcode.StatusData.ScannerStates
;
import
org.apache.cordova.CallbackContext
;
import
org.apache.cordova.CordovaInterface
;
import
org.apache.cordova.CordovaWebView
;
import
org.apache.cordova.PluginResult
;
import
org.json.JSONArray
;
import
org.json.JSONObject
;
import
java.util.ArrayList
;
import
java.util.Iterator
;
import
java.util.List
;
/**
* Created by alberto.doval on 21/05/18.
*/
public
class
ZebraMC33
extends
BaseScan
implements
EMDKListener
,
DataListener
,
StatusListener
,
ScannerConnectionListener
{
private
static
final
String
TAG
=
"ZebraMC33"
;
private
EMDKManager
emdkManager
=
null
;
private
BarcodeManager
barcodeManager
=
null
;
private
Scanner
scanner
=
null
;
private
boolean
bContinuousMode
=
false
;
private
List
<
ScannerInfo
>
deviceList
=
null
;
private
int
scannerIndex
=
0
;
// Keep the selected scanner
private
int
defaultIndex
=
0
;
// Keep the default scanner
private
int
triggerIndex
=
0
;
private
int
dataLength
=
0
;
private
String
statusString
=
""
;
public
ZebraMC33
(
CordovaInterface
cordova
,
CordovaWebView
webView
)
{
super
(
cordova
,
webView
);
initialize
(
cordova
,
webView
);
}
@Override
public
void
initialize
(
CordovaInterface
cordova
,
CordovaWebView
webView
)
{
init
(
cordova
);
}
@Override
public
String
getDeviceName
()
{
return
TAG
;
}
public
void
init
(
CordovaInterface
cordova
)
{
//when initialised, it call automatically onOpened
EMDKResults
results
=
EMDKManager
.
getEMDKManager
(
cordova
.
getActivity
().
getApplicationContext
(),
this
);
if
(
results
.
statusCode
!=
EMDKResults
.
STATUS_CODE
.
SUCCESS
)
{
Log
.
e
(
TAG
,
"Status: "
+
"EMDKManager object request failed!"
);
return
;
}
}
public
void
enable
(
CordovaInterface
cordova
,
CordovaWebView
webView
,
JSONArray
args
,
final
CallbackContext
callbackContext
)
{
/*this.currentCallbackContext = callbackContext;
JSONObject obj = new JSONObject();
PluginResult result = new PluginResult(PluginResult.Status.OK, obj);
result.setKeepCallback(true);
callbackContext.sendPluginResult(result);*/
};
private
void
initScanner
()
{
if
(
scanner
==
null
)
{
if
((
deviceList
!=
null
)
&&
(
deviceList
.
size
()
!=
0
))
{
scanner
=
barcodeManager
.
getDevice
(
deviceList
.
get
(
scannerIndex
));
}
else
{
Log
.
e
(
TAG
,
"Status: "
+
"Failed to get the specified scanner device! Please close and restart the application."
);
}
if
(
scanner
!=
null
)
{
scanner
.
addDataListener
(
this
);
scanner
.
addStatusListener
(
this
);
try
{
scanner
.
enable
();
}
catch
(
ScannerException
e
)
{
Log
.
e
(
TAG
,
"Status: "
+
e
.
getMessage
());
}
}
else
{
Log
.
e
(
TAG
,
"Status: "
+
"Failed to initialize the scanner device."
);
}
}
}
/*private class ProcessProfileAsyncTask extends AsyncTask<String, Void, EMDKResults> {
@Override
protected EMDKResults doInBackground(String... params) {
// Call processPrfoile with profile name, SET flag and config data to update the profile
EMDKResults results = profileManager.processProfile(profileName, ProfileManager.PROFILE_FLAG.SET, params);
return results;
}
@Override
protected void onPostExecute(EMDKResults results) {
super.onPostExecute(results);
String resultString;
//Check the return status of processProfile
if(results.statusCode == EMDKResults.STATUS_CODE.SUCCESS) {
resultString = "Profile update success.";
}else {
resultString = "Profile update failed.";
}
}
} */
private
void
deInitScanner
()
{
if
(
scanner
!=
null
)
{
try
{
scanner
.
cancelRead
();
scanner
.
disable
();
}
catch
(
Exception
e
)
{
Log
.
e
(
TAG
,
"Status: "
+
e
.
getMessage
());
}
try
{
scanner
.
removeDataListener
(
this
);
scanner
.
removeStatusListener
(
this
);
}
catch
(
Exception
e
)
{
Log
.
e
(
TAG
,
"Error removing listeners: Status: "
+
e
.
getMessage
());
}
try
{
scanner
.
release
();
}
catch
(
Exception
e
)
{
Log
.
e
(
TAG
,
"Error releasing scanner: Status: "
+
e
.
getMessage
());
}
scanner
=
null
;
}
}
private
void
stopScan
()
{
if
(
scanner
!=
null
)
{
try
{
// Reset continuous flag
bContinuousMode
=
false
;
// Cancel the pending read.
scanner
.
cancelRead
();
}
catch
(
ScannerException
e
)
{
Log
.
e
(
TAG
,
"Error stopping scan: Status: "
+
e
.
getMessage
());
}
}
}
@Override
public
void
scan
(
CordovaInterface
cordova
,
CordovaWebView
webView
,
JSONArray
args
,
final
CallbackContext
callbackContext
)
{
this
.
currentCallbackContext
=
callbackContext
;
if
(
scanner
==
null
)
{
initScanner
();
}
if
(
scanner
!=
null
)
{
try
{
if
(
scanner
.
isEnabled
())
{
// Submit a new read.
scanner
.
read
();
/*if (checkBoxContinuous.isChecked())
bContinuousMode = true;
else
bContinuousMode = false;*/
}
else
{
Log
.
e
(
TAG
,
"Status: Scanner is not enabled"
);
}
}
catch
(
ScannerException
e
)
{
Log
.
e
(
TAG
,
"Status: "
+
e
.
getMessage
());
}
}
}
@Override
public
void
onStart
()
{
}
@Override
public
void
onStop
()
{
}
@Override
public
void
onDestroy
()
{
// De-initialize scanner
deInitScanner
();
// Remove connection listener
if
(
barcodeManager
!=
null
)
{
barcodeManager
.
removeConnectionListener
(
this
);
barcodeManager
=
null
;
}
// Release all the resources
if
(
emdkManager
!=
null
)
{
emdkManager
.
release
();
emdkManager
=
null
;
}
}
@Override
public
void
onResume
(
boolean
multitasking
)
{
// The application is in foreground
// Acquire the barcode manager resources
if
(
emdkManager
!=
null
)
{
barcodeManager
=
(
BarcodeManager
)
emdkManager
.
getInstance
(
FEATURE_TYPE
.
BARCODE
);
// Add connection listener
if
(
barcodeManager
!=
null
)
{
barcodeManager
.
addConnectionListener
(
this
);
}
// Enumerate scanner devices
enumerateScannerDevices
();
// Initialize scanner
initScanner
();
setTrigger
();
setDecoders
();
}
}
private
void
setTrigger
()
{
if
(
scanner
==
null
)
{
initScanner
();
}
if
(
scanner
!=
null
)
{
//force to trigger hard scanner
scanner
.
triggerType
=
TriggerType
.
HARD
;
/*switch (triggerIndex) {
case 0: // Selected "HARD"
scanner.triggerType = TriggerType.HARD;
break;
case 1: // Selected "SOFT"
scanner.triggerType = TriggerType.SOFT_ALWAYS;
break;
}*/
}
}
//config barcode types allowed
private
void
setDecoders
()
{
if
(
scanner
==
null
)
{
initScanner
();
}
if
((
scanner
!=
null
)
&&
(
scanner
.
isEnabled
()))
{
try
{
ScannerConfig
config
=
scanner
.
getConfig
();
config
.
decoderParams
.
ean8
.
enabled
=
true
;
config
.
decoderParams
.
ean13
.
enabled
=
true
;
config
.
decoderParams
.
qrCode
.
enabled
=
true
;
config
.
decoderParams
.
code39
.
enabled
=
true
;
config
.
decoderParams
.
code128
.
enabled
=
true
;
scanner
.
setConfig
(
config
);
}
catch
(
ScannerException
e
)
{
Log
.
e
(
TAG
,
"Status: "
+
e
.
getMessage
());
}
}
}
@Override
public
void
onPause
(
boolean
multitasking
)
{
// The application is in background
// De-initialize scanner
deInitScanner
();
// Remove connection listener
if
(
barcodeManager
!=
null
)
{
barcodeManager
.
removeConnectionListener
(
this
);
barcodeManager
=
null
;
deviceList
=
null
;
}
// Release the barcode manager resources
if
(
emdkManager
!=
null
)
{
emdkManager
.
release
(
FEATURE_TYPE
.
BARCODE
);
}
}
@Override
public
void
onConnectionChange
(
ScannerInfo
scannerInfo
,
ConnectionState
connectionState
)
{
String
status
;
String
scannerName
=
""
;
String
statusExtScanner
=
connectionState
.
toString
();
String
scannerNameExtScanner
=
scannerInfo
.
getFriendlyName
();
if
(
deviceList
.
size
()
!=
0
)
{
scannerName
=
deviceList
.
get
(
scannerIndex
).
getFriendlyName
();
}
if
(
scannerName
.
equalsIgnoreCase
(
scannerNameExtScanner
))
{
switch
(
connectionState
)
{
case
CONNECTED:
deInitScanner
();
initScanner
();
setTrigger
();
setDecoders
();
break
;
case
DISCONNECTED:
deInitScanner
();
break
;
}
}
else
{
status
=
statusString
+
" "
+
scannerNameExtScanner
+
":"
+
statusExtScanner
;
}
}
private
void
openScanner
(
EMDKManager
emdkManager
)
{
this
.
emdkManager
=
emdkManager
;
// Acquire the barcode manager resources
barcodeManager
=
(
BarcodeManager
)
emdkManager
.
getInstance
(
FEATURE_TYPE
.
BARCODE
);
// Add connection listener
if
(
barcodeManager
!=
null
)
{
barcodeManager
.
addConnectionListener
(
this
);
}
// Get the ProfileManager object to process the profiles
//profileManager = (ProfileManager) emdkManager.getInstance(EMDKManager.FEATURE_TYPE.PROFILE);
// Initially set the original profile in Config xml. No extra data.
//new ProcessProfileAsyncTask().execute(new String[1]);
// Enumerate scanner devices
enumerateScannerDevices
();
//Set default scanner
}
@Override
public
void
onOpened
(
EMDKManager
emdkManager
)
{
this
.
openScanner
(
emdkManager
);
initScanner
();
}
@Override
public
void
onClosed
()
{
if
(
emdkManager
!=
null
)
{
// Remove connection listener
if
(
barcodeManager
!=
null
){
barcodeManager
.
removeConnectionListener
(
this
);
barcodeManager
=
null
;
}
// Release all the resources
emdkManager
.
release
();
emdkManager
=
null
;
}
Log
.
e
(
TAG
,
"Status: "
+
"EMDK closed unexpectedly! Please close and restart the application."
);
}
@Override
public
void
onData
(
ScanDataCollection
scanDataCollection
)
{
if
((
scanDataCollection
!=
null
)
&&
(
scanDataCollection
.
getResult
()
==
ScannerResults
.
SUCCESS
))
{
ArrayList
<
ScanData
>
scanData
=
scanDataCollection
.
getScanData
();
//get last result
ScanData
data
=
scanData
.
get
(
scanData
.
size
()-
1
);
///for(ScanData data : scanData) {
String
dataString
=
data
.
getData
();
Log
.
d
(
TAG
+
" - Barcode: "
,
dataString
);
if
(
currentCallbackContext
!=
null
)
{
try
{
JSONObject
obj
=
new
JSONObject
();
obj
.
put
(
"text"
,
dataString
);
PluginResult
result
=
new
PluginResult
(
PluginResult
.
Status
.
OK
,
obj
);
result
.
setKeepCallback
(
true
);
currentCallbackContext
.
sendPluginResult
(
result
);
}
catch
(
Exception
x
)
{
PluginResult
result
=
new
PluginResult
(
PluginResult
.
Status
.
ERROR
,
x
.
getMessage
());
result
.
setKeepCallback
(
true
);
currentCallbackContext
.
sendPluginResult
(
result
);
}
}
//}
}
}
@Override
public
void
onStatus
(
StatusData
statusData
)
{
ScannerStates
state
=
statusData
.
getState
();
switch
(
state
)
{
case
IDLE:
statusString
=
statusData
.
getFriendlyName
()+
" is enabled and idle..."
;
if
(
bContinuousMode
)
{
try
{
// An attempt to use the scanner continuously and rapidly (with a delay < 100 ms between scans)
// may cause the scanner to pause momentarily before resuming the scanning.
// Hence add some delay (>= 100ms) before submitting the next read.
try
{
Thread
.
sleep
(
100
);
}
catch
(
InterruptedException
e
)
{
e
.
printStackTrace
();
}
scanner
.
read
();
}
catch
(
ScannerException
e
)
{
statusString
=
e
.
getMessage
();
}
}
break
;
case
WAITING:
statusString
=
"Scanner is waiting for trigger press..."
;
break
;
case
SCANNING:
statusString
=
"Scanning..."
;
break
;
case
DISABLED:
statusString
=
statusData
.
getFriendlyName
()+
" is disabled."
;
break
;
case
ERROR:
statusString
=
"An error has occurred."
;
break
;
default
:
break
;
}
}
private
void
enumerateScannerDevices
()
{
if
(
barcodeManager
!=
null
)
{
List
<
String
>
friendlyNameList
=
new
ArrayList
<
String
>();
int
spinnerIndex
=
0
;
deviceList
=
barcodeManager
.
getSupportedDevicesInfo
();
if
((
deviceList
!=
null
)
&&
(
deviceList
.
size
()
!=
0
))
{
Iterator
<
ScannerInfo
>
it
=
deviceList
.
iterator
();
while
(
it
.
hasNext
())
{
ScannerInfo
scnInfo
=
it
.
next
();
friendlyNameList
.
add
(
scnInfo
.
getFriendlyName
());
if
(
scnInfo
.
isDefaultScanner
())
{
defaultIndex
=
spinnerIndex
;
}
++
spinnerIndex
;
}
}
else
{
Log
.
e
(
TAG
,
"Status: "
+
"Failed to get the list of supported scanner devices! Please close and restart the application."
);
}
}
}
}
src/libs/com.symbol.emdk.jar
0 → 100755
View file @
7d145bb6
File added
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment