When I compare between tow values one coming from an EditText and the other from a TextView I always get that they don't match even if they are the same word
Why would that happen?
When I compare between tow values one coming from an EditText and the other from a TextView I always get that they don't match even if they are the same word
Why would that happen?
Are you using ==
? you could try and use .equals()
instead.
Hope this helps!