我正在使用QType 23二维条形码扫描:
<question key="Q1_SCREEN_SCAN" type="23" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="51" nextQuestionKey="Q2_EPSILON_RESULT"/>
...使用直接显示扫描屏幕的attributetype="51“。扫描后是否有可能触发OK?而不是在屏幕上显示UID?谢谢!你好,拉米
发布于 2015-04-09 12:59:35
您可以使用的可能属性类型如下:
因此,类型52或53的属性中的任何一种都应该起作用。
发布于 2015-04-10 05:58:58
我在https://devtools.movilizer.com/confluence/display/DOC21/Skip+take+view+in+capture+screens找到了一个跳过捕获屏幕的完整示例。
它显示了一个捕获条形码一维屏幕,但它也应该与2D屏幕工作-只需将type="22"替换为type="23"。
因此,在您的情况下,它应该看起来像:
<!-- Skip only the take -->
<question key="Q1_SCREEN_SCAN" type="22" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="52" nextQuestionKey="Q2_EPSILON_RESULT"/>
...或者说:
<!-- Skip both default and take -->
<question key="Q1_SCREEN_SCAN" type="22" title="Bitte scannen Barcode"
<answer key="Q1_BARCODE_INPUT" attributeType="53" nextQuestionKey="Q2_EPSILON_RESULT"/>https://stackoverflow.com/questions/29537754
复制相似问题