안드로이드 사용자 디스플레이 랭귀지 얻어오기.
각회사 단말기별로 많이 테스트 해보지 못했음. 예외상황 발생시 조건 추가해서 사용하시기 바랍니다.
public boolean IsLanguageKorea()
{
boolean result=false;
String is_language=Global.mContext.getResources().getConfiguration().locale.getDisplayLanguage(); //안드로이드 context를 가져와서 하세요.
if(is_language.equals("ko")|| is_language.equals("KO")|| is_language.equals("한국어"))
{
result=true;
}
return result;
}
'ANDROID' 카테고리의 다른 글
인터넷 상태 확인 네트워크 상태. (0) | 2014.10.11 |
---|---|
안드로이드 맥어드레스 얻어오기 macaddress (0) | 2014.10.11 |
루팅 체크. (0) | 2014.10.11 |
한글만써야 할때. 안드로이드 한글 (0) | 2014.10.11 |
android e-mail email 이메일 (0) | 2014.10.11 |