In my trying AsyncTask I get email address from my server. In onPostExecute() I have to check is email address empty or null
String myString = null;
if (TextUtils.isEmpty(myString)) {
return; // or break, continue, throw
}
// myString is neither null nor empty if this point is reached
Log.i("TAG", myString);
Notes