Cómo verificar si una cadena está vacía o nula en Android Studio

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