How to check a string in java that is empty or not?
For example :
string str = " "
and string str2 = " "
and str3 = ""
str includes 3 spaces, str2 includes 1 space, and str3 has no characters but all of them are empty.
How do I check this in Android?