本文介绍了检查的EditText为空。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有5个 EditTexts
在Android的用户输入。我想知道如果我能有检查的方法,所有的5 EditTexts
如果他们是空。有没有办法做到这一点?
I have 5 EditTexts
in android for users to input. I would like to know if I could have a method for checking all the 5 EditTexts
if they are null. Is there any way to do this??
推荐答案
我做这样的事情一次;
I did something like this once;
EditText usernameEditText = (EditText) findViewById(R.id.editUsername);
sUsername = usernameEditText.getText().toString();
if (sUsername.matches("")) {
Toast.makeText(this, "You did not enter a username", Toast.LENGTH_SHORT).show();
return;
}
这篇关于检查的EditText为空。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!