我有使用 EMDK 的应用程序,我的测试设备是 TC55。我成功创建了用于启用和接收扫描数据的代码。但是我有不同的问题 - 当我扫描条形码并在我的片段中显示 EditText 字段时,扫描值总是添加到那里。即使输入字段没有焦点。
我不希望这种行为 - 我希望扫描结果仅传递给应用程序的后端方法,而不是输入文本字段。
请帮忙
在使用Xamarin EMDK几个月后,我终于设法删除了这样的功能。只需进入您的个人资料即可添加击键功能并禁用所有击键功能。
默认情况下,Zebra Technologies 安卓设备(如 TC55)配置为使用 DataWedge 插入条形码数据作为键盘输入事件。
这样,无需特定的编码,您的应用程序就可以接收条形码数据。
DataWedge 包含一个配置文件系统,您可以在其中将应用程序包名称和活动与特定配置文件相关联,并通过 Intents 将数据发送到应用程序。您可以在 Zebra 开发人员门户上找到有关此内容的更多信息,尤其是有关如何配置 DataWaedge 的信息。
除此之外,Zebra Technologies 会定期发布适用于 Java 和 Xamarin 的 EMDK,以便从 Android 应用程序自动执行这些配置,并提供完整的条形码扫描 API,使您的应用程序能够完全控制硬件条形码扫描仪。
免责声明:我在斑马技术工作。
按照@GustavoBaiocchiCosta
的回答,以下是通过意图禁用击键的方法:
public void setKeystrokeConfig(boolean enabled) {
// Keystroke plugin properties bundle
Bundle bParams = new Bundle();
bParams.putString("keystroke_output_enabled", enabled ? "true" : "false"); // <--
bParams.putString("keystroke_action_char", "9");
bParams.putString("keystroke_delay_extended_ascii", "500");
bParams.putString("keystroke_delay_control_chars", "800");
// Keystroke plugin bundle
Bundle bConfig = new Bundle();
bConfig.putString("PLUGIN_NAME", "KEYSTROKE");
bConfig.putBundle("PARAM_LIST", bParams);
// Main bundle properties
Bundle configBundle = new Bundle();
configBundle.putString("PROFILE_NAME", "Profile12");
configBundle.putString("PROFILE_ENABLED", "true");
configBundle.putString("CONFIG_MODE", "CREATE_IF_NOT_EXIST");
configBundle.putBundle("PLUGIN_CONFIG", bConfig);
// Send intent to DataWedge
Intent i = new Intent();
i.setAction("com.symbol.datawedge.api.ACTION");
i.putExtra("com.symbol.datawedge.api.SET_CONFIG", configBundle);
i.putExtra("SEND_RESULT", "true");
i.putExtra("COMMAND_IDENTIFIER", "KEYSTROKE_API");
this.sendBroadcast(i);
}
这可以防止使用条形码内容填充重点输入字段。
在此处查看 API