我使用的是Netbeans 8.1和gluonhq jfxplugin 2.2.0。
我正在尝试读取条形码,并创建了一个新项目(标准的hello世界)。我更改了按钮处理程序以调用函数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));
}
如果有任何帮助,我将不胜感激
您需要在AndroidManifest.xml文件中定义com.gluonhq.charm.down.android.scan.SCAN
意图。在主活动定义下面添加以下活动定义:
<activity android:name="com.gluonhq.charm.down.android.scan.zxing.CaptureActivity"
android:screenOrientation="sensorLandscape"
android:clearTaskOnLaunch="true"
android:stateNotNeeded="true"
android:windowSoftInputMode="stateAlwaysHidden">
<intent-filter>
<action android:name="com.gluonhq.charm.down.android.scan.SCAN"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
默认情况下,插件会在后台为您生成AndroidManifest.xml文件。如果你还没有设置一个自定义的AndroidManifest.xml文件,你可以复制插件生成的文件。默认版本位于build/javafxports/tmp/android/AndroidManifest.xml
中。只需将其复制到一个持久位置,即src/android
。然后更新你的build.gradle,告诉插件它应该使用自定义的AndroidManifest.xml文件,而不是生成默认的文件:
jfxmobile {
android {
manifest = 'src/android/AndroidManifest.xml'
}
}
更新:您还需要向zxing核心库添加一个额外的依赖项,因为当仅依赖魅力库时,它似乎不会自动包含在内:
dependencies {
androidRuntime 'com.google.zxing:core:3.2.1'
}
此外,您还必须将CAMERA权限添加到您的舱单中:
<uses-permission android:name="android.permission.CAMERA"/>