Skip to content

Android:Locale

한국여부를 확인하는 샘플코드

public static final boolean getLocale(Context c) {
    Locale locale= this.getResources().getConfiguration().locale;
    return locale.equals(Locale.KOREA);
}

See also