CN1Lib for using ZBar scanning in Android apps.
The built in Codename One implementation of CodeScanner works well on iOS but has some issues on Android.
This module works around those issues by embedding ZBar into the Android build.
This removes the reliance on an external scanning app to be installed and seems to scan faster.
It does add several megabytes to the final .apk file size.
- Install the cn1-codescan library into your project.
- Build or download the QRScanner.cn1lib file.
- Put the file the
libs
folder of your project. - Right-click on your project and choose
Refresh Libs
Basically use QRScanner
instead of CodeScanner
.
QRScanner.scanQRCode(new ScanResult() {
public void scanCompleted(String contents, String formatName, byte[] rawBytes) {
Dialog.show("Completed", contents, "OK", null);
}
public void scanCanceled() {
Dialog.show("Cancelled", "Scan Cancelled", "OK", null);
}
public void scanError(int errorCode, String message) {
Dialog.show("Error", message, "OK", null);
}
});
It should pretty much be a drop in replacement for CodeScanner. If you need to detect if code scanning is supported on the current platform then you need to keep the original check do not change this line to QRScanner:
if (CodeScanner.getInstance() != null) {
QRScanner.scanQRCode(myScanResult);
} else {
Dialog.show("Not Supported","QR Code Scanning is not available on this device","OK",null);
}