Android - Language Lấy ngôn ngữ, địa điểm hiện tại của thiết bị
Sử dụng Locale:
String locale = getResources().getConfiguration().locale.getCountry();
TelephonyManager teleMgr = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
if (teleMgr != null) {
String countryISOCode = teleMgr.getSimCountryIso();
}
String locale = getResources().getConfiguration().locale.getCountry();
hoặc:
String localeDis = getResources().getConfiguration().locale.getDisplayCountry();
hoặc:
String displayLanguage=Locale.getDefault().getDisplayLanguage();
Sử dụng thông tin cung cấp từ SIM:
TelephonyManager teleMgr = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
if (teleMgr != null) {
String countryISOCode = teleMgr.getSimCountryIso();
}
Nhận xét
Đăng nhận xét