web-dev-qa-db-ja.com

Android:inputTypeがNumber / Phoneに設定されているときにEditTextが空かどうかを確認します

AndroidユーザーがAGEを入力するためのEditTextがあります。inputType= phoneに設定されています。このEditTextがnullかどうかを確認します。

私はすでにこの質問を見ました: EditTextが空かどうかを確認してください。 しかし、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.

ご協力ありがとうございました。

14
user3061111

次のようなTextUtilsクラスを使用して確認できます。

TextUtils.isEmpty(ed_text);

または、次のように確認できます。

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
}
36
Hariharan

最初の方法

TextUtilライブラリを使用します

if(TextUtils.isEmpty(editText.getText().toString()) 
{
    Toast.makeText(this, "plz enter your name ", Toast.LENGTH_SHORT).show();
    return;
}

2番目の方法

private boolean isEmpty(EditText etText) 
{
        return etText.getText().toString().trim().length() == 0;
}
7
Xar E Ahmer

ユーザーがスペースを入力するとこれらのテストが失敗することがわかったので、空の値のヒントが欠けているかどうかをテストします

EditText username = (EditText) findViewById(R.id.editTextUserName);

EditText password = (EditText) findViewById(R.id.editTextPassword);

// these hint strings reflect the hints attached to the resources

if (username.getHint().equals("Enter your username") || password.getHint().equals("Enter Your Password")){
      // enter your code here 

} else {
      // alls well
}
0
Sunil

EditText textAge;
textAge =(EditText)findViewByID(R.id.age);
if(TextUtils.isEmpty(textAge))
{
Toast.makeText(this、 "Age Edit text is Empty"、Toast.LENGTH_SHORT).show();
//または必要なコードをここに入力します
}

0
Samer Kasseb

以下を行うだけです

String s = (EditText) findViewByID(R.id.age)).getText().toString();
TextUtils.isEmpty(s);
0
AZIM MOHAMAD

私は同じ仕事にこの方法を使用します:

public boolean checkIsNull(EditText... editTexts){
for (EditText editText: editTexts){
  if(editText.getText().length() == 0){
    return true;
  }
}
return false;
}
0
J.Done