this is my code:
public String TakeText;
...
TakeText = startBox.getText().toString();
if (marker == null && TakeText == Text1)
{...}
Android Studio debug tool shows me that TakeText="WoW" and Text1="WoW" and at the same time that TakeText == Text1 is false.
Why?