I\'m trying to get values out of edittext boxes and on the click of a button, I want to compare if the text inside the edittext box matches a certain value. If it does, a new in
Use
if(id.equals("abc"))
instead Of
if(id == "abc")