我正在使用 Netbeans 8.1 和 gluonhq jfxplugin 2.2.0。
我正在尝试读取条形码,并创建了一个新项目(标准的 hello world)。我更改了按钮处理程序以调用函数 UpdateText()(如下),该函数又调用 Charm Down Scan 服务。
当我运行应用程序并单击按钮时,我在 Android 设备管理器中收到以下错误:
E/AndroidRuntime(3583): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.gluonhq.charm.down.android.scan.SCAN cat=[android.intent.category.DEFAULT] flg=0x4080000 }
此崩溃发生在 scanservice.scan() 行上。
按钮单击处理程序代码:
protected void UpdateText(Label label) {
ScanService scanService = PlatformFactory.getPlatform().getScanService();
StringProperty scannedString = scanService.scan();
scannedString.addListener((obs, ov, nv) -> System.out.println("Scanned String = " + nv));
}
我将不胜感激任何帮助