Java Edittext:错误已解决,然后在android中启用发送按钮

Java Edittext:错误已解决,然后在android中启用发送按钮,java,android,android-edittext,Java,Android,Android Edittext,我有五个edittext字段,用于检查字段,并在输入错误时限制某些数据,如下代码所示,但现在如果我在edittext中输入错误的数据,则它会将信息输入数据库,因此如果任何edittext中有错误,我希望禁用该按钮。错误可能出现在1到5个编辑文本中,因此必须禁用“发送”按钮。只有当edittext字段中没有错误时,它才必须启用send按钮 public class MaINActivity extends Activity { String result = null; Inpu

我有五个edittext字段,用于检查字段,并在输入错误时限制某些数据,如下代码所示,但现在如果我在edittext中输入错误的数据,则它会将信息输入数据库,因此如果任何edittext中有错误,我希望禁用该按钮。错误可能出现在1到5个编辑文本中,因此必须禁用“发送”按钮。只有当edittext字段中没有错误时,它才必须启用send按钮

public class MaINActivity extends Activity {

    String result = null;
    InputStream is = null;
    String valid_email = null;
    String valid_name = null;
    String valid_last = null;
    String valid_age = null;
    String v5,v1,v2,v3,v4,v6;
    String valid_confirm = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_subscribe);

    final EditText editText = (EditText)findViewById(R.id.firstname);

    final EditText editText1 = (EditText)findViewById(R.id.lastname);

    final EditText editText2 = (EditText)findViewById(R.id.age1);

    final EditText editText3 = (EditText)findViewById(R.id.email);

    final EditText editText4 = (EditText)findViewById(R.id.confirm);

    editText2.addTextChangedListener(new TextWatcher(){

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count,
                int after) {
        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before,
                int count) {
        }

        @Override
        public void afterTextChanged(Editable s) {
            Is_Valid_Age(editText2);
        }

        private void Is_Valid_Age(EditText editText2) {

            if(editText2.length() == 0 || editText2.equals("") || editText2 == null || "".equals(editText2.getText().toString())) {
                valid_age = null;
            }else {
                valid_age = editText2.getText().toString();
            }
        }

    });
    editText1.addTextChangedListener(new TextWatcher(){

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count,
                int after) {


        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before,
                int count) {


        }

        @Override
        public void afterTextChanged(Editable s) {
            Is_Valid_Last_Name(editText1);

        }

        private void Is_Valid_Last_Name(EditText editText1) throws NumberFormatException {

            if (editText1.getText().toString().length() <= 0) {
                editText1.setError("Accept Alphabets Only.");
                valid_last = null;
            } else if (!editText1.getText().toString().matches("[a-zA-Z ]+")) {
                editText1.setError("Accept Alphabets Only.");
                valid_last = null;
            } else if(editText1.length() == 0 || editText1.equals("") || editText1 == null || "".equals(editText1.getText().toString())) {
                valid_last = null;
            }else {
                valid_last = editText1.getText().toString();
            }

        }

    });

    editText.addTextChangedListener(new TextWatcher(){

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count,
                int after) {


        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before,
                int count) {


        }

        @Override
        public void afterTextChanged(Editable s) {
            Is_Valid_First_Name(editText);

        }

        private void Is_Valid_First_Name(EditText editText) throws NumberFormatException {

            if (editText.getText().toString().length() <= 0) {
                editText.setError("Accept Alphabets Only.");
                valid_name = null;
            } else if (!editText.getText().toString().matches("[a-zA-Z ]+")) {
                editText.setError("Accept Alphabets Only.");
                valid_name = null;
            } else if(editText.length() == 0 || editText.equals("") || editText == null || "".equals(editText.getText().toString())) {
                valid_name = null;
            }else {
                valid_name = editText.getText().toString();
            }

        }
    }); 

    editText3.addTextChangedListener(new TextWatcher() {
        @Override
        public void onTextChanged(CharSequence s, int start, int before,
                int count) {

        }

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count,
                int after) {

        }

        @Override
        public void afterTextChanged(Editable s) {

            Is_Valid_Email_Address(editText3);
        }

        public void Is_Valid_Email_Address(EditText editText3) {
            if (editText3.getText().toString() == null) {
                editText3.setError("Invalid Email Address");
                valid_email = null;
            } else if (isEmailValid(editText3.getText().toString()) == false) {
                editText3.setError("Invalid Email Address");
                valid_email = null;
            } else if(editText3.length() == 0 || editText3.equals("") || editText3 == null || "".equals(editText3.getText().toString())) {
                valid_email = null;
            }else {
                valid_email = editText3.getText().toString();
            }
        }
    });

    editText4.addTextChangedListener(new TextWatcher() {

        @Override
        public void onTextChanged(CharSequence s, int start, int before,
                int count) {


        }

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count,
                int after) {


        }

        @Override
        public void afterTextChanged(Editable s) {

            Is_Valid_Confirm_Address(editText4);
        }


        public void Is_Valid_Confirm_Address(EditText editText4) {
            if (editText4.getText().toString() == null) {
                editText4.setError("Invalid Email Address");
                valid_confirm = null;
            } else if (isEmailValid(editText4.getText().toString()) == false) {
                editText4.setError("Invalid Email Address");
                valid_confirm = null;
            } else if (editText4.getText().toString().equals(editText3.getText().toString())) {

                valid_confirm = editText4.getText().toString();
            } else if(editText4.length() == 0 || editText4.equals("") || editText4 == null || "".equals(editText4.getText().toString())) {
                valid_confirm = null;
            } else {
                editText4.setError("Confirm Email is Not Matching");
                valid_confirm = null;
            } 

        }
    });

    Button send = (Button) findViewById(R.id.send);
    send.setOnClickListener(new View.OnClickListener(){

        @SuppressLint("NewApi")
        @Override
        public void onClick(View view) {

            v1 = editText.getText().toString();
            v2 = editText1.getText().toString();
            v3 = editText2.getText().toString();
            v4 = editText3.getText().toString();
            v5 = editText4.getText().toString();  


            ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();

            nameValuePairs.add(new BasicNameValuePair("firstname",v1));
            nameValuePairs.add(new BasicNameValuePair("lastname",v2));
            nameValuePairs.add(new BasicNameValuePair("age",v3));
            nameValuePairs.add(new BasicNameValuePair("email_address",v4));
            nameValuePairs.add(new BasicNameValuePair("confirm_email_address",v5));



            StrictMode.setThreadPolicy(policy);

            try
            {
                HttpClient httpclient = new DefaultHttpClient();
                HttpPost httppost = new HttpPost("localhost/Android/Insert.php");
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                HttpResponse response = httpclient.execute(httppost); 
                HttpEntity entity = response.getEntity();
                is = entity.getContent();

                Log.e("log_tag", "connection success ");
                Toast.makeText(getApplicationContext(), "Subscription Successfull.Thank You for Subscribing you have now been added to our Mailing Lists", Toast.LENGTH_LONG).show();
            }
            catch(Exception e)
            {
                Log.e("log_tag", "Error in http connection "+e.toString());
                Toast.makeText(getApplicationContext(), "Connection fail", Toast.LENGTH_SHORT).show();
            }
            try
            {
                BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
                StringBuilder sb = new StringBuilder();
                String line = null;
                while ((line = reader.readLine()) != null) 
                {
                        sb.append(line + "\n");
                        Intent i = new Intent(getBaseContext(),SecondActivity.class);
                        startActivity(i);
                }
                is.close();

                result=sb.toString();
            }
            catch(Exception e)
            {
               Log.e("log_tag", "Error converting result "+e.toString());
            }
            try
            {   
                    JSONObject json_data = new JSONObject(result);
                    CharSequence w= (CharSequence) json_data.get("result");

                    Toast.makeText(getApplicationContext(), w, Toast.LENGTH_SHORT).show();
            }
            catch(JSONException e)
            {
                    Log.e("log_tag", "Error parsing data "+e.toString());
                    Toast.makeText(getApplicationContext(), "JsonArray fail", Toast.LENGTH_SHORT).show();
            }
        }


    });

}

    private boolean isEmailValid(String email) {

        return android.util.Patterns.EMAIL_ADDRESS.matcher(email).matches();
    }}
公共类MaINActivity扩展活动{
字符串结果=null;
InputStream=null;
字符串valid_email=null;
字符串有效\u name=null;
字符串valid\u last=null;
字符串有效期=空;
字符串v5、v1、v2、v3、v4、v6;
字符串valid\u confirm=null;
@凌驾
创建时受保护的void(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_subscribe);
final EditText EditText=(EditText)findViewById(R.id.firstname);
final EditText editText1=(EditText)findViewById(R.id.lastname);
最终编辑文本编辑文本2=(编辑文本)findViewById(R.id.age1);
final EditText editText3=(EditText)findViewById(R.id.email);
最终编辑文本编辑文本4=(编辑文本)findViewById(R.id.confirm);
editText2.addTextChangedListener(新的TextWatcher(){
@凌驾
更改前的公共无效(字符序列、整数开始、整数计数、,
整数后){
}
@凌驾
public void onTextChanged(字符序列,int start,int before,
整数计数){
}
@凌驾
公共无效后文本已更改(可编辑){
是否为有效年龄(editText2);
}
私有无效是有效的(EditText editText2){
如果(editText2.length()==0 | | editText2.equals(“”| | editText2==null | |.“”.equals(editText2.getText().toString()){
有效年龄=空;
}否则{
valid_age=editText2.getText().toString();
}
}
});
editText1.addTextChangedListener(新的TextWatcher(){
@凌驾
更改前的公共无效(字符序列、整数开始、整数计数、,
整数后){
}
@凌驾
public void onTextChanged(字符序列,int start,int before,
整数计数){
}
@凌驾
公共无效后文本已更改(可编辑){
是否为有效姓(editText1);
}
private void是有效的姓氏(EditText editText1)引发NumberFormatException{

如果(editText1.getText().toString().length()尝试这种方法,希望这能帮助您解决问题。

活动\u subscribe.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:gravity="center"
    android:padding="5dp">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <EditText
                android:id="@+id/edtFirstName"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="FirstName"
                android:layout_marginTop="5dp"/>

            <EditText
                android:id="@+id/edtLastName"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="LastName"
                android:layout_marginTop="5dp"/>
            <EditText
                android:id="@+id/edtAge"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="Age"
                android:layout_marginTop="5dp"/>
            <EditText
                android:id="@+id/edtEmail"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="Email"
                android:inputType="textEmailAddress"
                android:layout_marginTop="5dp"/>
            <EditText
                android:id="@+id/edtPassword"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:inputType="textPassword"
                android:hint="Password"
                android:layout_marginTop="5dp"/>
            <EditText
                android:id="@+id/edtConfirmPassword"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:inputType="textPassword"
                android:hint="Confirm Password"
                android:layout_marginTop="5dp"/>
            </LinearLayout>
        </ScrollView>
    <Button
        android:id="@+id/btnSubmit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Submit"/>

</LinearLayout>

subscribeActivity.java

public class SubscribeActivty extends Activity {

    InputStream is = null;
    private EditText edtFirstName;
    private EditText edtLastName;
    private EditText edtAge;
    private EditText edtEmail;
    private EditText edtPassword;
    private EditText edtConfirmPassword;
    private Button btnSubmit;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_subscribe);

        edtFirstName = (EditText) findViewById(R.id.edtFirstName);
        edtLastName = (EditText) findViewById(R.id.edtLastName);
        edtAge = (EditText) findViewById(R.id.edtAge);
        edtEmail = (EditText) findViewById(R.id.edtEmail);
        edtPassword = (EditText) findViewById(R.id.edtPassword);
        edtConfirmPassword = (EditText) findViewById(R.id.edtConfirmPassword);
        btnSubmit = (Button) findViewById(R.id.btnSubmit);

        btnSubmit.setOnClickListener(new View.OnClickListener() {

            @SuppressLint("NewApi")
            @Override
            public void onClick(View view) {

                boolean isValid = true;
                if (edtFirstName.getText().toString().length() <= 0) {
                    edtFirstName.setError("Value  Required");
                    isValid = false;
                } else if (!edtFirstName.getText().toString().matches("[a-zA-Z ]+")) {
                    edtFirstName.setError("Accept Alphabets Only.");
                    isValid = false;
                }

                if (edtLastName.getText().toString().length() <= 0) {
                    edtLastName.setError("Value  Required");
                    isValid = false;
                } else if (!edtLastName.getText().toString().matches("[a-zA-Z ]+")) {
                    edtLastName.setError("Accept Alphabets Only.");
                    isValid = false;
                }

                if (edtEmail.getText().toString().length() <= 0) {
                    edtEmail.setError("Value  Required");
                    isValid = false;
                } else if (!isEmailValid(edtEmail.getText().toString())) {
                    edtLastName.setError("Invalid Email.");
                    isValid = false;
                }

                if (edtAge.getText().toString().length() <= 0) {
                    edtAge.setError("Value  Required");
                    isValid = false;
                } else if (!edtAge.getText().toString().matches("[0-9 ]+")) {
                    edtAge.setError("Accept Numbers Only.");
                    isValid = false;
                }

                if (edtPassword.getText().toString().length() <= 0) {
                    edtPassword.setError("Value  Required");
                    isValid = false;
                }

                if (edtConfirmPassword.getText().toString().length() <= 0) {
                    edtConfirmPassword.setError("Value  Required");
                    isValid = false;
                } else if (!edtConfirmPassword.getText().toString().equals(edtPassword.getText().toString())) {
                    edtConfirmPassword.setError("Password Mismatch.");
                    isValid = false;
                }


                if (isValid) {
                    ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();

                    nameValuePairs.add(new BasicNameValuePair("firstname", edtFirstName.getText().toString()));
                    nameValuePairs.add(new BasicNameValuePair("lastname", edtLastName.getText().toString()));
                    nameValuePairs.add(new BasicNameValuePair("age", edtAge.getText().toString()));
                    nameValuePairs.add(new BasicNameValuePair("email", edtEmail.getText().toString()));
                    nameValuePairs.add(new BasicNameValuePair("password", edtPassword.getText().toString()));

                    submitDataOnServer(nameValuePairs);
                }
            }

        });

    }

    public void submitDataOnServer(final ArrayList<NameValuePair> nameValuePairs){
        new AsyncTask<Void,Void,String>(){
            @Override
            protected String doInBackground(Void... params) {
                try {
                    HttpClient httpclient = new DefaultHttpClient();
                    HttpPost httppost = new HttpPost("localhost/Android/Insert.php");
                    httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                    HttpResponse response = httpclient.execute(httppost);
                    HttpEntity entity = response.getEntity();
                    is = entity.getContent();

                    Log.e("log_tag", "connection success ");
                    Toast.makeText(getApplicationContext(), "Subscription Successfull.Thank You for Subscribing you have now been added to our Mailing Lists", Toast.LENGTH_LONG).show();
                } catch (Exception e) {
                    Log.e("log_tag", "Error in http connection " + e.toString());
                    Toast.makeText(getApplicationContext(), "Connection fail", Toast.LENGTH_SHORT).show();
                }
                try {

                    BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
                    StringBuilder sb = new StringBuilder();
                    String line = null;
                    while ((line = reader.readLine()) != null) {
                        sb.append(line + "\n");
                    }
                    is.close();

                    return sb.toString();
                } catch (Exception e) {
                    Log.e("log_tag", "Error converting result " + e.toString());
                }
                return null;
            }

            @Override
            protected void onPostExecute(String result) {
                super.onPostExecute(result);
                try {
                    JSONObject json_data = new JSONObject(result);
                    CharSequence w = (CharSequence) json_data.get("result");

                    Toast.makeText(getApplicationContext(), w, Toast.LENGTH_SHORT).show();
                } catch (JSONException e) {
                    Log.e("log_tag", "Error parsing data " + e.toString());
                    Toast.makeText(getApplicationContext(), "JsonArray fail", Toast.LENGTH_SHORT).show();
                }
            }
        }.execute();
    }


    public boolean isEmailValid(final String mailAddress) {
        Pattern pattern;
        Matcher matcher;
        final String EMAIL_PATTERN = "^[_A-Za-z0-9-\\+]+(\\.[_A-Za-z0-9-]+)*@" + "[A-Za-z0-9-]+(\\.[A-Za-z0-9]+)*(\\.[A-Za-z]{2,})$";
        pattern = Pattern.compile(EMAIL_PATTERN);
        matcher = pattern.matcher(mailAddress);
        return matcher.matches();
    }
}
公共类SubscribeActivity扩展活动{
InputStream=null;
私人编辑文本名;
私有EditText-edtLastName;
私人编辑;
私人编辑文本和电子邮件;
私人编辑文本和密码;
私有编辑文本edtConfirmPassword;
私人按钮btnSubmit;
@凌驾
创建时受保护的void(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_subscribe);
edtFirstName=(EditText)findViewById(R.id.edtFirstName);
edtLastName=(EditText)findViewById(R.id.edtLastName);
edtAge=(EditText)findViewById(R.id.edtAge);
edtEmail=(EditText)findViewById(R.id.edtEmail);
edtPassword=(EditText)findViewById(R.id.edtPassword);
edtConfirmPassword=(EditText)findViewById(R.id.edtConfirmPassword);
btnSubmit=(按钮)findViewById(R.id.btnSubmit);
btnSubmit.setOnClickListener(新视图.OnClickListener(){
@SuppressLint(“新API”)
@凌驾
公共void onClick(视图){
布尔值isValid=true;

如果(edtFirstName.getText().toString().length())正确,只需检查@Haresh即可