How to get Country (or its ISO code)?
问题 What is the best way to get country code? As of now I know two ways one is to get by TelephonyManager and another by Locale which is the other best & unique way to find country code in android. 回答1: Try this, TelephonyManager tm = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE); String countryCode = tm.getSimCountryIso(); 回答2: There are always huge discussions about this, and I never understand why developers and companies go for the complex way. The language selected by the