如果在Android中为null,则无法使用inputType“phone”检查Edittext

时间:2016-08-20 13:28:39

标签: android

我正在尝试检查用户是否在按钮点击事件的EditText中输入了他/她的手机号码,但是当控制进入“ editRegMobile时,我无法检查EditText是否为空”。当我点击按钮时,它不显示Toast中的消息。我还想检查手机号码的格式,即“+91 999999999”国家代码。我可以检查其他EditText但不能检查Mobile EditText。

xml代码:

<EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:inputType="phone"
            android:ems="10"
            android:id="@+id/editRegMobile"
            android:layout_gravity="center_horizontal"
            android:background="@drawable/sign_in_up_textbox"
            android:layout_marginLeft="15dp"
            android:layout_marginRight="15dp"
            android:layout_marginBottom="35dp"
            android:textSize="16sp"
            android:letterSpacing="0.08"
            android:singleLine="true" />

Java代码:

btnSignUp.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (editRegName != null && TextUtils.isEmpty(editRegName.getText().toString().trim())) {
                    editRegName.setError("Required!");
                    editRegName.requestFocus();
                } else if (editRegEmail != null && TextUtils.isEmpty(editRegEmail.getText().toString())) {
                    editRegEmail.setError("Required!");
                    editRegEmail.requestFocus();
                } else if (!(editRegEmail != null && TextUtils.isEmpty(editRegEmail.getText().toString()))) {
                    if (!Patterns.EMAIL_ADDRESS.matcher(editRegEmail.getText().toString()).matches()) {
                        editRegEmail.setError("Invalid Format!");
                        editRegEmail.requestFocus();
                    }
                } else if ((editRegMobile != null) && TextUtils.isEmpty(editRegMobile.getText().toString())) {
                    Toast.makeText(getApplicationContext(), "Please enter mobile number!", Toast.LENGTH_SHORT).show();
                } else if (!(editRegMobile != null && TextUtils.isEmpty(editRegMobile.getText().toString()))) {
                    if (!Patterns.PHONE.matcher(editRegMobile.getText().toString()).matches()) {
                        Toast.makeText(getApplicationContext(), "Please enter valid mobile number!", Toast.LENGTH_SHORT).show();
                    }
                }
            }
        });

2 个答案:

答案 0 :(得分:0)

简单检查空:

{{1}}

答案 1 :(得分:0)

你可以制作

if(editRegMobile.getText().length() == 0)

或者

editRegMobile.getText().toString().length()

第二种方式需要一些性能,因为需要首先转换为String