当前位置:   article > 正文

Android EditText监听返回true/false与处理两次回调问题_android 8 edittext 按返回

android 8 edittext 按返回

问题:在监听输入框回车键,回调方法返回为true时,发现其回调方法调用了两次。代码如下:

binding.etItemCode.setOnEditorActionListener(new TextView.OnEditorActionListener() {
            @Override
            public boolean onEditorAction(TextView textView, int actionId, KeyEvent keyEvent) {
                if( EditorInfo.IME_ACTION_DONE == actionId || EditorInfo.IME_ACTION_NEXT == actionId ||actionId == EditorInfo.IME_ACTION_UNSPECIFIED){
                    if(binding.etItemCode.isEmpty()){
                        XToastUtils.warning("请输入物料代码");
                        binding.etItemCode.requestFocus();
                    }else if(binding.etWaveOrderCode.isEmpty()){
                        XToastUtils.warning("请输入相关单号");
                        binding.etWaveOrderCode.requestFocus();
                    }else {
                        parseInputData(binding.etItemCode.getEditValue());
                    }
                }
                return true;
            }
        });
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

通过DeBug 发现两次回调action不同,分别是ACTION DOWNACTION UP,即键盘的按下和抬起两个操作,这里两次回调就是回车按下时,回调一次,回车键抬起时,回调一次。
在这里插入图片描述
请添加图片描述

解决方案
1.在回调方法下,if的条件中加上

keyEvent.getAction() == KeyEvent.ACTION_DOWN

2.使回调方法返回false。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/391076
推荐阅读
相关标签
  

闽ICP备14008679号