我在
Android中有一个EditText,用户可以输入他们的AGE.它设置为inputType = phone.
我想知道是否有办法检查此EditText是否为空.
@H_301_12@解决方法
我想知道是否有办法检查此EditText是否为空.
我已经看过这个问题:Check if EditText is empty.,但它并没有解决inputType = phone的情况.
这些,我已经检查了,不工作:
(EditText) findViewByID(R.id.age)).getText().toString() == null (EditText) findViewByID(R.id.age)).getText().toString() == "" (EditText) findViewByID(R.id.age)).getText().toString().matches("") (EditText) findViewByID(R.id.age)).getText().toString().equals("") (EditText) findViewByID(R.id.age)).getText().toString().equals(null) (EditText) findViewByID(R.id.age)).getText().toString().trim().length() == 0 (EditText) findViewByID(R.id.age)).getText().toString().trim().equals("") and isEmpty do not check for blank space.
感谢您的帮助.
您可以使用以下任一方式检查:
EditText ed = (EditText) findViewById(R.id.age); String ed_text = ed.getText().toString().trim(); if(ed_text.isEmpty() || ed_text.length() == 0 || ed_text.equals("") || ed_text == null) { //EditText is empty } else { //EditText is not empty }