Como verificar se uma string está vazia ou nula no Android Studio

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