在读取条形码之前清除EditText吗?

时间:2018-10-29 08:55:16

标签: java android barcode handheld

在用激光手持设备读取条形码之前,如何删除编辑文本的内容。问题是当我在setOnKeyListener中时,它已经被读取。这就是为什么我目前无法在代码中删除edittext的内容。

每次读取条形码而无需触摸任何按钮时,我将需要了解如何删除文本。

mBinding.barcode.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
            if (event.getAction() == KeyEvent.ACTION_DOWN) {
                presenter.handleBarcode(mBinding.barcode.getText().toString().trim());
            }
            return true;
        });

这是handleBarcode方法:

 public void handleBarcode(String barcode) {
    boolean hasResult = false;
    for (Product product : mProducts) {
        if (!TextUtils.isEmpty(product.getBarcode()) && product.getBarcode().equals(barcode)) {

            hasResult = true;

            if (product.getQuantita_eff() < product.getQuantita_prev()) {
                /* --------- GESTIONE DEL NUMERO DI COLLI PER ARTICOLO ----------*/
                if (mNroColliMap.containsKey(product.getBarcode())) {
                    mNroColliMap.put(product.getBarcode(), mNroColliMap.get(product.getBarcode()) + 1);
                } else {
                    mNroColliMap.put(product.getBarcode(), 1);
                }
                /* --------- FINE GESTIONE DEL NUMERO DI COLLI PER ARTICOLO ----------*/

                //Controllo se sono stati letti tutti i colli (attualmente basta rileggere lo stesso codice)
                if (mNroColliMap.get(product.getBarcode()) == product.getNro_colli()) {
                    product.setQuantita_eff(product.getQuantita_eff() + 1);
                    product.setDt_lettura_barcode(Utils.formatDateTime(new Date()));
                    product.setStatus(Product.Status.DONE);

                    /* --------- CONTROLLO DATA CONSEGNA TASS E NUMERO COLLI ----------*/
                    if (!product.getData_consegna_tassativa().equals(" ")) {
                        getView().showError("Questo articolo ha data di consegna tassativa il " + product.getData_consegna_tassativa());
                    }
                    /* --------- FINE CONTROLLO DATA CONSEGNA TASS E NUMERO COLLI ----------*/

                    registerDisposable(Completable
                            .fromAction(() -> getStorage().getDb().products().update(product))
                            .subscribeOn(Schedulers.io())
                            .observeOn(AndroidSchedulers.mainThread())
                            .subscribe(() -> {
                                getView().notifyProductAdded(product, null);

                                int missingItems = product.getQuantita_prev() - product.getQuantita_eff();
                                if (missingItems > 0) {
                                    getView().notifyMissingItemsForProduct(product, missingItems);
                                }

                                if (!getView().isScannerEnable()) {
                                    new Handler().postDelayed(() -> getView().enableScanner(true), 2000);
                                }
                            }, throwable -> getView().enableScanner(true)));
                } else {
                    mNroColliMap.put(product.getBarcode(), mNroColliMap.get(product.getBarcode()) + 1);
                }
            } else {
                getView().notifyProductAlreadyScanned();
            }
            break;
        }
    }
    if (!hasResult) {
        getContractorForBarcodeVerification(barcode);
    }
}

1 个答案:

答案 0 :(得分:0)

解决方案:

在方法handleBarcode(..)中,您可以编写:

mBinding.barcode.clear()

这将在您每次扫描条形码时清除文本,而无需进行任何触摸。

希望这能为您带来想要的东西。

更新:

尝试一下:

public void handleBarcode(EditText edittext, String barcode) {

然后

    mBinding.barcode.setOnKeyListener((View v, int keyCode, KeyEvent event) -> {
        if (event.getAction() == KeyEvent.ACTION_DOWN) {
            presenter.handleBarcode(mBinding.barcode, mBinding.barcode.getText().toString().trim());
        }
        return true;
    });

最后,edittext.clear()

尝试一下。