Jak sprawdzić, czy ciąg jest pusty lub zerowy w Android Studio

if(TextUtils.isEmpty(/*your String*/)){
  // String is empty or null
}
Dark Dingo