美文网首页程序员
EditText TextWatcher 监听编辑崩溃问题处理

EditText TextWatcher 监听编辑崩溃问题处理

作者: Ovadyah | 来源:发表于2022-11-23 10:59 被阅读0次

    需求是输入框里的数值,不能大于12,不能小于1,设置值之后发现会崩溃。特此记录此崩溃问题的处理。

     mEditText.addTextChangedListener(new TextWatcher() {
    
                @Override
                public void beforeTextChanged(CharSequence s, int start, int count, int after) {
                }
    
                @Override
                public void onTextChanged(CharSequence s, int start, int before, int count) {
    
                }
    
                @Override
                public void afterTextChanged(Editable s) {
                    String value = mValidityMonth.getText().toString().trim();
                    if(!TextUtils.isEmpty(value)){
                        int dataNum = Integer.valueOf(value);
                        if (dataNum <= 0) {
                            dataNum = 1;
                            ToastUtil.show(CActivity.this, "最小值为1");
                            mEditText.setText(String.format("%s", dataNum));
                        } else if (dataNum > 12) {
                            dataNum = 12;
                            ToastUtil.show(CActivity.this, "最大值不能超过12");
                            mEditText.setText(String.format("%s", dataNum));
                            return;
                        }
                        mEditText.setSelection(value.length());
                    }
                }
            });
    
    

    相关文章

      网友评论

        本文标题:EditText TextWatcher 监听编辑崩溃问题处理

        本文链接:https://www.haomeiwen.com/subject/dlrzxdtx.html