Androidでシステムの言語、国設定を取得
サンプルコード:
public String getLocaleLanguage() {
Locale l = Locale.getDefault();
return String.format(“%s-%s", l.getLanguage(), l.getCountry());
}
Coding Changes the World
サンプルコード:
public String getLocaleLanguage() {
Locale l = Locale.getDefault();
return String.format(“%s-%s", l.getLanguage(), l.getCountry());
}