gpt4 book ai didi

java - Android EditText 验证

转载 作者:行者123 更新时间:2023-12-01 08:10:11 24 4
gpt4 key购买 nike

我有两个 EditText,例如 editText1editText2

我正在从 EditText 获取输入到 name1name2

现在我想在单击“确定”按钮之前验证 EditText 不为空。
为此,我使用了:

if(editText1==NULL && editText2==NULL) {
textView.setText("please enter Names");
} else {
other code;
}

但它没有验证,并且在 EditText 为空的情况下,单击“确定”按钮后会显示结果。
我也尝试过这种方式:

if(name1==NULL && name2==NULL) {
textView.setText("please enter Names");
} else {
other code;
}

要做什么?

最佳答案

试试这个:

if(editText1.getText().toString().trim().equals("") 
&& editText2.getText().toString().trim().equals(""))
{
textView.setText("Please enter Names");
}
else
{
// other code
}

关于java - Android EditText 验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18050412/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com