Barcode-Reader
Barcode-Reader copied to clipboard
Disable Multiple detection of barcodes
Need help on this asap plz
Whats the problem. You can just ignore the callback, instead consider only single read callback.
can you explain
Need help on this asap plz can you explain
If I correctly understood your question, then you should ignore the onScannedMultiple call, that is, do not perform any actions inside the method. Like this:
@Override
public void onScannedMultiple(List<Barcode> barcodes) {
Log.e(TAG, "onScannedMultiple: " + barcodes.size());
}