Here's the gist of my problem code:

String from = extra.getString("from");
Log.d("Cat", from);  //debugs as edit
if(from == "edit") {
  Log.d("Cat", "Edit");
} else {
  Log.d("Cat", "Not Edit");
}

It would go to "Not Edit"

In the calling activity I have

cIntent.putExtra("from", "edit");
startActivity(cIntent);

If I changed all that up to getInt and passed 1, it debugs as Edit, and if passed 2, debugs as Not Edit.

I don't understand whats going on. I can live with it if I need to, but I feel like I'm missing something very basic here.

Thanks.

link|improve this question

feedback

5 Answers

up vote 1 down vote accepted

Use the equals method:

if(from.equals("edit")) {
  Log.d("Cat", "Edit");
} else {
  Log.d("Cat", "Not Edit");
}
link|improve this answer
It's been so long since I've taken any Java classes. equals briefly crossed my mind but then vanished. Thanks for the example. – spuppett Feb 9 at 4:37
Coming from a C# background, I just banged my head on my desk not 3 hours ago on this very problem while abusing my droid. – Metro Smurf Feb 9 at 4:59
feedback

In Java you need to compare strings as follows,

if(from.equal ( "edit") ) 
{
  Log.d("Cat", "Edit");
} 
else 
{
  Log.d("Cat", "Not Edit");
}

"==" is used to compare object, not values.

link|improve this answer
feedback

I answered this before refer here:

http://stackoverflow.com/a/5915172/529691

link|improve this answer
feedback

In Java when you compare using ==, it compares reference ID(pointer) between objects. In case of numeric object like int, it's value is it id. However, with String two identical strings may have different IDs. So when you compare them using ==, it will return false since it's different object.

If you use firstString.equal(secondString) of sorts, it will take the value of that string and compare using it.

Hope this answer your question, long story short never compare string using ==.

link|improve this answer
feedback

You should use str.equalsIgnoreCase(String s) when comparing strings because equals method is primarily used to compare objects, and in some cases it cannot compare two exactly the same strings as it should

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.