isZH static method

bool isZH()

Implementation

static bool isZH() {
 Log.i(tag, "isZH:defaultLocale:${Intl.defaultLocale}");
 if(Intl.defaultLocale.toString().startsWith("zh")){
   return true;
 }
 return false;
}