https://github.com/googlesamples/android-visionから Google バーコードリーダーを試しました
この例は機能しません。タブで画面に移動すると、常に検出されます
「バーコードが検出されませんでした」
デバッグの理由:
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;
}
graphic
変数は常にNull
画像を参照してください。
誰でもこの問題に直面しましたか?解決方法を教えていただけないでしょうか。どうもありがとう!