I would suggest you to think twice about your if statement "if(a ==
b)". If 'a' and 'b' are not primitive data types but objects, it's
highly probable that you need to change it into "if(a.equals(b))" or
"if(b.equals(a))". This is a common mistake most of the people do when
they are experienced in C++ but new in Java (I can tell this also
based on personal experience ;-) )

-------------------------------------------------
Ali Chousein
Weather-Buddy
http://weatherbuddy.blogspot.com | http://twitter.com/weather_buddy
Geo-Filtered Assistant
http://geo-filtered-assistant.blogspot.com
https://marketplace.cisco.com/apphq/products/994

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to