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.

link|improve this question

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
feedback

2 Answers

up vote 6 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.

link|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
feedback

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!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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