一、Android APP获取系统当前语言代码
Locale locale = getResources().getConfiguration().locale;
String language = locale.getLanguage();
String local = Locale.getDefault().toString();
String country =getResources().getConfiguration().locale.getCountry();
二、测试效果,设置成繁体hk。