如何在Android中一次显示所有edittext错误消息

如何在Android中一次显示所有edittext错误消息

本文介绍了如何在Android中一次显示所有edittext错误消息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个EditText,正在对其进行验证.如果验证失败,我想一次显示所有错误消息.一次,我只收到一条错误消息,该错误消息固定在底部的EditText字段中.如何一次显示所有EditText错误消息?我正在使用以下代码:

I have two EditTexts and I am applying validations on them. If the validations fail, I want to show all the error messages at once. At a time, I'm getting only one error message which is fixed to the bottom EditText field. How to show all the EditText error messages at once??I am using the following code:

 if(uname.matches(""))
              username.setError("Email is required");

if(pwd.matches(""))
            password.setError("Password is required");

我的屏幕截图是:

推荐答案

这将为您提供帮助

  if (TextUtils.isEmpty(username.getText().toString())) {
                    username.setError("ABC");
                }
    else(TextUtils.isEmpty(password.getText().toString())) {
                    password.setError("ABC");
                }

这篇关于如何在Android中一次显示所有edittext错误消息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 21:01