본문 바로가기
프로그래밍/Android

Android getCountryCode

by CaffeLatte 2015. 3. 16.

public static String getCountryCode(Context context) {

        Locale locale = context.getResources().getConfiguration().locale;

        String countryCode = locale.getCountry();


        return countryCode;

    }


getCountry()

한국 : KR

중국 : CN

댓글