EditText是否为空正确判断方式

Posted on 2022-03-30 20:56  Naughty_min  阅读(226)  评论(0编辑  收藏  举报

1.判断长度

String str = EditText.getText().toString().trim();

if(str.length()==0){

~~~为空

}

2.Empty

if(str.isEmpth){

~~~为空

}