My question is when scanning a pdf417 barcode format sometimes it returns a UPC_E format base on the scan result?
here is a snippet of my code
private BarcodeView barcodeView;
private BarcodeCallback callback = new BarcodeCallback() {
@Override
public void barcodeResult(BarcodeResult result) {
if (result.getText() != null) {
Toast.makeText(getActivity(), result.getText(), Toast.LENGTH_LONG).show();
}
}
@Override
public void possibleResultPoints(List<ResultPoint> resultPoints) {
}
};
here is the library
compile 'com.journeyapps:zxing-android-embedded:3.3.0'