我在Android上制作了一个用于扫描QR码的应用程序,通过一些教程,我得到了这段代码:
Frame frame = new Frame.Builder().setBitmap(bitmap).build();
SparseArray<Barcode> barcodes = detector.detect(frame);
if (barcodes.size() < 1) {
Debug("Scan Failed: Found nothing to scan");
} else {
Barcode code = barcodes.valueAt(0);
String value = code.displayValue;
Parse(value);
}
当我打电话时,它会显示我的错误:
E/Barcode Scanner API: java.lang.IllegalStateException: Target host must not be null, or set in parameters. scheme=null, host=null, path=data1
有什么建议吗? 提前致谢