Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
login.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            // TODO Auto-generated method stub
            if( username_text.getText().toString() == "admin" &&
                    pass_text.getText().toString() == "password"){

                startActivityForResult(i, ACTIVITY_CREATE);

            }else{
                Toast.makeText(gps_gui.this, "Your username or password is not correct! Please, insert again",
                        Toast.LENGTH_SHORT).show();
                clearEditText();
            }
        }

    });

I'm try to check it, I found it not go to if condition.

share|improve this question
1  
You should accept any correct answers to your previous questions. You can just click the check mark beside an answer to mark it as accepted. – kcoppock Jan 30 '11 at 6:26
I did pretty much this same exact test -- even using "admin" and "password" as the values. Nice! :) Thanks for asking this question! – aikeru Dec 14 '11 at 22:37

2 Answers

up vote 12 down vote accepted

When using java, you must compare Strings using the String.equals(String) method. The == comparison checks to see if the String object values are equal, which undoubtedly they are not. Try to change you example to :

"admin".equals(username_text.getText().toString()) &&"password".equals(pass_text.getText().toString())

Its also smart to put the static string first, in case the string value of the value being checked is null.

share|improve this answer
Thank you. is it case sensitive right? – Yoo Jan 30 '11 at 5:31
1  
It is casesensitive. As @msumaithri mentioned, you can use equalsIgnoreCase as an alternative (though I wouldn't recommend you do for passwords and usernames) – Nick Campion Jan 30 '11 at 5:50

Use String class's equals() method to compare Strings. The following links would give you more details.

About equals(Object yourObj) method (CASE sensitive)

equalsIgnoreCase(String yourStringObject) can be used, if you want it to be not case sensitive!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.