android 判断文本框中是否有数据
时间: 2024-05-27 15:12:43 浏览: 57
文本框检查
您可以使用getText().toString()方法获取文本框中的内容,并判断是否为空字符串。具体实现如下:
EditText editText = findViewById(R.id.editText);
if (editText.getText().toString().trim().length() == 0) {
// 文本框中没有数据
} else {
// 文本框中有数据
}
阅读全文