Android判断当前系统语言

Android获取当前系统语言

getResources().getConfiguration().locale.getCountry()

国际化常用语言

  • 中文:
getResources().getConfiguration().locale.getCountry().equals("CN")
  • 繁体中文:
getResources().getConfiguration().locale.getCountry().equals("TW") 
  • 英文(英式):
getResources().getConfiguration().locale.getCountry().equals("UK")
  • 英文(美式):
getResources().getConfiguration().locale.getCountry().equals("US")

效果图

  • 中文

Android判断当前系统语言

  • 英文

Android判断当前系统语言

上一篇:解决Visual Studio 调试时候不能直接访问.json后缀文件的问题


下一篇:XenServer 6.5实战系列之十三:图形界面安装Linux Redhat系统