我从https://github.com/googlesamples/android-vision开始尝试谷歌条码阅读器
此示例不起作用.当我选择屏幕时,它总是会检测到
“no barcode detected”
调试原因:
private boolean onTap(float rawX,float rawY) {
//TODO: use the tap position to select the barcode.
BarcodeGraphic graphic = mGraphicOverlay.getFirstGraphic();
Barcode barcode = null;
if (graphic != null) {
barcode = graphic.getBarcode();
if (barcode != null) {
Intent data = new Intent();
data.putExtra(BarcodeObject,barcode);
setResult(CommonStatusCodes.SUCCESS,data);
finish();
}
else {
Log.d(TAG,"barcode data is null");
}
}
else {
Log.d(TAG,"no barcode detected");
}
return barcode != null;
}
图形变量始终为空
看图像:
有谁遇到过这个问题?你能告诉我怎么解决吗?
非常感谢!
最佳答案
正如@ Vietnt134已经回答的那样,Android Mobile Vision暂时被禁用.
原文链接:https://www.f2er.com/android/429996.html您可以按照此主题了解是否知道某些内容:
https://github.com/googlesamples/android-vision/issues/98
人们对Google非常生气.我希望他们能很快解决这个问题