实时验证(点击按钮前)

Real time validation (before button click)

有什么方法可以在用户单击按钮之前实时验证 EditText 字段。

例如,如果我有

if (password.length() < 6) {
    passwordwrapper.setError("Password must have at least 6 characters");
    return;
}

if (!validateEmail(email)) {
    emailwrapper.setError("Invalid email");
    return;
}

validateEmail 方法是

private static final String EMAIL_PATTERN = "^[a-zA-Z0-9#_~!$&'()*+,;=:.\"(),:;<>@\[\]\\]+@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*$";
private Pattern pattern = Pattern.compile(EMAIL_PATTERN);
private Matcher matcher;

public boolean validateEmail(String email) {
    matcher = pattern.matcher(email);
    return matcher.matches();
}

我如何设置 TextWatcher 或其他东西来实时验证它?

你能试试吗

Field1 = (EditText)findViewById(R.id.field1);


Field1.addTextChangedListener(new TextWatcher() {

   public void afterTextChanged(Editable s) {}

   public void beforeTextChanged(CharSequence s, int start,
     int count, int after) {
   }

   public void onTextChanged(CharSequence s, int start,
     int before, int count) {

   }
  });

TextWatcher is used when an object of a type is attached to an Editable, its methods will be called when the text is changed. Here is the simplest way to set up Textwatcher:

   EditText inputName = (EditText) findViewById(R.id.input_name);
   EditText inputEmail = (EditText) findViewById(R.id.input_email);
   EditTextinputPassword = (EditText) findViewById(R.id.input_password);
   TextInputLayout inputLayoutEmail = (TextInputLayout) findViewById(R.id.input_layout_email);

   inputName.addTextChangedListener(new MyTextWatcher(inputName));
   inputEmail.addTextChangedListener(new MyTextWatcher(inputEmail));
   inputPassword.addTextChangedListener(new MyTextWatcher(inputPassword))

验证电子邮件

    private boolean validateEmail() {
    String email = inputEmail.getText().toString().trim();

    if (email.isEmpty() || !isValidEmail(email)) {
        inputLayoutEmail.setError(getString(R.string.err_msg_email));
        requestFocus(inputEmail);
        return false;
    } else {
        inputLayoutEmail.setErrorEnabled(false);
    }

    return true;
}

检查邮箱是否有效,

 private static boolean isValidEmail(String email) {
        return !TextUtils.isEmpty(email) && android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches();
     }

实现它们,

private class MyTextWatcher implements TextWatcher {

    private View view;

    private MyTextWatcher(View view) {
        this.view = view;
    }

    public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
    }

    public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
    }

    public void afterTextChanged(Editable editable) {
        switch (view.getId()) {
            case R.id.input_name:
                validateName();
                break;
            case R.id.input_email:
                validateEmail();
                break;
            case R.id.input_password:
                validatePassword();
                break;
        }
    }
}

希望对您有所帮助。