我正在使用 google 提供的 quickstart-android 代码,但经过多次尝试,我无法找到不返回 null 的上下文。BarcodeScannerProcessor 本身不是 Activity,因此我尝试创建 LivePreviewActivity 的实例并将其用作意图中的上下文,但它为空。
目标是一旦识别出有效的条形码,我想打开一个新活动,允许用户验证值并按下按钮调用 Web 服务以通过 API 将条形码发布到数据库。我很难找到有效的上下文,并且应用程序在尝试执行 Intent 时崩溃。
从第 97-107 行开始:
for (int i = 0; i < barcodes.size(); ++i) {
FirebaseVisionBarcode barcode = barcodes.get(i);
BarcodeGraphic barcodeGraphic = new BarcodeGraphic(graphicOverlay, barcode);
graphicOverlay.add(barcodeGraphic);
System.out.println(barcode.getRawValue());
if (!barcode.getRawValue().equals("") ) {
System.out.println("Got the number:" + barcode.getRawValue() + " Context: " + mContext); //OLD SCHOOL DEBUG OUTPUT
//enter code to start activity
Intent intent = new Intent(mContext, SendScannedBarcode.class);
String message = scannedBarcode;
intent.putExtra(EXTRA_MESSAGE, message);
mContext.startActivity(intent);
}
}
您可以在 repo 中备份以查看我尝试获取上下文的 LivePreviewActivity 实例。
我已经尝试了很多事情并阅读了有关上下文、视图和活动的内容,并且基本上完全把自己弄糊涂了。我能找到的唯一 tuts 是使用 Kotlin,这无助于澄清事情。
我赞赏任何有助于从该上下文中识别或违反有效意图的帮助。谢谢你。