android获取系统语言

Locale locale = getResources().getConfiguration().locale;
String language = locale.getLanguage();
其中language为语言码:
zh:汉语
en:英语

你可能感兴趣的:(android获取系统语言)