如何在android中的多个编辑文本上添加Text Watcher?

时间:2016-07-04 04:44:46

标签: android android-textwatcher

我有一个活动,其中包含两个编辑文本,并且该活动中有一个TextWatcher,它是单独实现的。我想创建一个实现TextWatcher的单个类以及该编辑文本中的TextWatcher。我怎样才能做到这一点 代码: -

private TextWatcher getmWatcher = 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) {
        checkFieldsForEmpty();
    }
};
private TextWatcher mWatcher = 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) {
        checkFieldsForEmpty();
    }
};
m_InputMobile = (EditText) findViewById(R.id.input_mobile);// finding Id of Mobile Number edit text
    m_InputMobile.addTextChangedListener(getmWatcher);
    m_InputPassword = (EditText) findViewById(R.id.input_password);// finding Id of assword editText
    m_InputPassword.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD);// defining password edit Tect Input type

3 个答案:

答案 0 :(得分:3)

有两种方法可以做到这一点。

第一

TextWatcher textWatcher = 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) {
              if (m_InputMobile.getText().hashCode() == s.hashCode()) {
                  checkFieldsForEmpty();
              }
              else if (m_InputPassword.getText().hashCode() == s.hashCode()) {
                  checkFieldsForEmpty();
              }
        }
    };

m_InputMobile = (EditText) findViewById(R.id.input_mobile);
m_InputMobile.addTextChangedListener(getmWatcher);
m_InputPassword = (EditText) findViewById(R.id.input_password);
m_InputPassword.addTextChangedListener(getmWatcher);

或制作一个客户TextWatcher课程

第二

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    m_InputMobile = (EditText) findViewById(R.id.input_mobile);
    m_InputMobile.addTextChangedListener(new CustomTextWatcher(m_InputMobile));
    m_InputPassword = (EditText) findViewById(R.id.input_password);
    m_InputPassword.addTextChangedListener(new CustomTextWatcher(m_InputPassword));
}

private class CustomTextWatcher implements TextWatcher {
    private EditText mEditText;

    public CustomTextWatcher(EditText e) { 
        mEditText = e;
    }

   @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) {
       checkFieldsForEmpty();
   }
}

有关详细信息,请访问this问题。

快乐编码。

答案 1 :(得分:1)

  1. 多个edittext初始化&设置TextChangeListener

    for(int i=0;i<editTexts_ids.length;i++)
    {
        editTexts[i] = (EditText)view.findViewById(editTexts_ids[i]);
        editTexts[i].addTextChangedListener(this);
    
        textInputLayouts[i]= (TextInputLayout)view.findViewById(textInputLayouts_ids[i]);
        //Log.e("EditText["+i+"]",""+editTexts[i].getId());
    }
    
  2. 在afterTextChanged方法

    @Override 
    public void afterTextChanged(Editable editable) {
    
    for(int i=0;i<editTexts_ids.length;i++) // Disable Error AFter Entered Text
         {//not include Mobile Number Name,S/o, Nominee Edittexts
            if (editTexts[i].getText().hashCode() == editable.hashCode())// Checking
            {
                //Mobile Number VAlidation At Runtime
                if(i==11)
                {
                    if(Utils.Mobile_NumberValidation(editable.toString()))
                    {
                        textInputLayouts[i].setError("");
                        return;
                    }
                    else
                    {
                        textInputLayouts[i].setError("Invalid Mobile Number (should start with 7 or 8 or 9) , Length 10 digits");
                        return;
                    }
                }
                if (i == 4) { // for Name
                    if(!Utils.Name_Validation(editable.toString())) {
                        textInputLayouts[4].setError("Invalid Person Name (Special Symbols(@,!,$ .etc), DOT (.) are not allowed)");
                        return;
                    }else
                    {
                        textInputLayouts[4].setError("");
                        return;
                    }
                }
                if (i == 5) { //for S/o,D/o,W/o
                    if(!Utils.Name_Validation(editable.toString())) {
                        textInputLayouts[5].setError("Invalid Person Name (Special Symbols(@,!,$ .etc), DOT (.) are not allowed)");
                        return;
                    }else
                    {
                        textInputLayouts[5].setError("");
                        return;
                    }
                }
    
                if (i == 9) { //for S/o,D/o,W/o
                    if(!Utils.Name_Validation(editable.toString())) {
                        textInputLayouts[9].setError("Invalid Person Name (Special Symbols(@,!,$ .etc), DOT (.) are not allowed)");
                        return;
                    }else
                    {
                        textInputLayouts[9].setError("");
                        return;
                    }
                }
    
    
                if (!editable.toString().trim().isEmpty()) {
                    textInputLayouts[i].setError("");
                    return;
                }
    
            }
    
    }
    

    }

答案 2 :(得分:0)

只需创建一个TextWatcher对象,然后将其传递到addTextChangeListener,就像这样:

TextWatcher textWatcher = 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) {
              checkFieldsForEmpty();
        }
    };

    m_InputMobile.addTextChangedListener(textWatcher);