android- 如何防止输入 key/click 来自条形码扫描仪

android- How to prevent enter key/click coming from barcode scanner

您好,我有一个应用程序,我通过条形码扫描仪获取条目。我使用 Zebra TC56 作为测试设备。

我需要向用户显示一条警告消息,这就是为什么我有一个自定义对话框。 当用户遇到错误时显示对话框。我的对话框的图片可以在这里看到:

下面红色部分是一个按钮,点击按钮后,对话框会关闭,用户会转到最新的画面。

一切正常,但有些东西我不想要。当用户扫描条形码(输入数据)按钮时,将触发并关闭对话框。

我只想通过单击屏幕上的按钮 (TAMAM) 来关闭对话框。但是当我扫描任何东西时,对话框都关闭了。

这是对话框的代码class:

public class ViewDialog {
public void showDialog(Activity activity, String msg){
    final Dialog dialog = new Dialog(activity);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.setCancelable(false);
    dialog.setContentView(R.layout.customdialog);

    TextView text = (TextView) dialog.findViewById(R.id.text_dialog);
    text.setText(msg);

    Button dialogButton = (Button) dialog.findViewById(R.id.btn_dialog);
    dialogButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            dialog.dismiss();
        }
    });

    dialog.show();

}

}

我试图将注意力集中在按钮 (TAMAM) 以外的某个地方,但没有帮助。如果有人知道如何从条形码扫描器中关闭回车键,我真的需要一些帮助,我将不胜感激。 (我已经设置设备发送回车键,因为我需要在其他屏幕)

我能想到的几种方法。

首先,我假设您正在使用 DataWedge 自动将回车键附加到扫描的数据,您可以使用 SWITCH_PROFILE API: http://techdocs.zebra.com/datawedge/6-3/guide/api/switchtoprofile/. This is presuming that you still need to be able to scan when the dialog is visible, if you wish to disable scanning entirely you could use the SCANNER_INPUT_PLUGIN API: http://techdocs.zebra.com/datawedge/6-3/guide/api/scannerinputplugin/.

其次,您可以使用 EMDK 配置文件 API 更改 KeyStroke 输出插件的参数 (http://techdocs.zebra.com/emdk-for-android/6-3/mx/data-capture/keystroke/#keystrokeoutput) then apply that newly modified profile. I've never tried that myself but it should work - check out the following sample for the principles behind that: http://techdocs.zebra.com/emdk-for-android/6-3/samples/data-capture/

第三,您可以使用扫描仪的 Java SDK,它可以让您更好地控制扫描仪的行为方式 (http://techdocs.zebra.com/emdk-for-android/6-3/api/)