You can't test for equality on a String using "==" as that will just check to see if the object memory reference is the same. You need to use .equals i.e myTotal.equals(myInput)
-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

