cara memeriksa apakah string kosong atau nol di studio android

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