Androidモバイルは実際にどこにあるかをよく知っていますが、国コードや国名のようなもので国を取得する方法はありますか?
正確なGPS位置を知る必要はありません。国コードまたは名前で十分です。このコードを使用しています。
String locale = context.getResources().getConfiguration().locale.getCountry(Locale.getDefault());
System.out.println("country = "+locale);
しかし、それは私にコード「US」を与えます
しかし、私のデバイスはインドに保管されていました。 GPSまたはネットワークプロバイダーを使用せずにデバイスの現在の国コードを検索する方法はありますか。私はタブレットを使用しているためです。前もって感謝します。
getCountry()
に何も渡してはいけません。Locale.getDefault()
を削除してください
String locale = context.getResources().getConfiguration().locale.getCountry();
このコードを使用するだけで、
TelephonyManager tm = (TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);
String countryCodeValue = tm.getNetworkCountryIso();
現在接続されているネットワークが米国の場合、これは「US」を返します。これはSIMカードなしでも機能します。これで問題が解決することを願っています。
このリンクを使用します http://ip-api.com/json 、これはすべての情報をjsonとして提供します。このJSONから国を簡単に取得できます。このサイトは現在のIPを使用して機能し、IPとセンドバックの詳細を自動的に検出します。
ドキュメント http://ip-api.com/docs/api:json 役に立てば幸いです。
これは私が得たものです。
{
"as": "AS55410 C48 Okhla Industrial Estate, New Delhi-110020",
"city": "Kochi",
"country": "India",
"countryCode": "IN",
"isp": "Vodafone India",
"lat": 9.9667,
"lon": 76.2333,
"org": "Vodafone India",
"query": "123.63.81.162",
"region": "KL",
"regionName": "Kerala",
"status": "success",
"timezone": "Asia/Kolkata",
"Zip": ""
}
N.B. -これはサードパーティのAPIであるため、主要なソリューションとして使用しないでください。また、無料かどうかもわかりません。
チェックされた回答には非推奨のコードが含まれています。これを実装する必要があります:
String locale;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
locale = context.getResources().getConfiguration().getLocales().get(0).getCountry();
} else {
locale = context.getResources().getConfiguration().locale.getCountry();
}
一部のデバイスでは、デフォルト言語が異なるように設定されている場合(インド人は英語(US)を設定できます)
context.getResources().getConfiguration().locale.getDisplayCountry();
間違った値を与えるため、この方法は信頼性がありません
また、TelephonyManagerのgetNetworkCountryIso()メソッドは、SIMカードがないデバイス(WIFIタブレット)では機能しません。
デバイスにSIMがない場合は、タイムゾーンを使用して国を取得できます。インドなどの国では、この方法が有効です
国の確認に使用されるサンプルコードはインドかどうか(タイムゾーンID:asia/calcutta)
private void checkCountry() {
TelephonyManager telMgr = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
if (telMgr == null)
return;
int simState = telMgr.getSimState();
switch (simState) {
//if sim is not available then country is find out using timezone id
case TelephonyManager.SIM_STATE_ABSENT:
TimeZone tz = TimeZone.getDefault();
String timeZoneId = tz.getID();
if (timeZoneId.equalsIgnoreCase(Constants.INDIA_TIME_ZONE_ID)) {
//do something
} else {
//do something
}
break;
//if sim is available then telephony manager network country info is used
case TelephonyManager.SIM_STATE_READY:
if (telMgr != null) {
String countryCodeValue = tm.getNetworkCountryIso();
//check if the network country code is "in"
if (countryCodeValue.equalsIgnoreCase(Constants.NETWORK_INDIA_CODE)) {
//do something
}
else {
//do something
}
}
break;
}
}
完全な例を次に示します。 TelephonyManagerから(SIMまたはCDMAデバイスから)国コードを取得してみてください。利用できない場合は、ローカル構成から取得してみてください。
private static String getDeviceCountryCode(Context context) {
String countryCode;
// try to get country code from TelephonyManager service
TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
if(tm != null) {
// query first getSimCountryIso()
countryCode = tm.getSimCountryIso();
if (countryCode != null && countryCode.length() == 2)
return countryCode.toLowerCase();
if (tm.getPhoneType() == TelephonyManager.PHONE_TYPE_CDMA) {
// special case for CDMA Devices
countryCode = getCDMACountryIso();
} else {
// for 3G devices (with SIM) query getNetworkCountryIso()
countryCode = tm.getNetworkCountryIso();
}
if (countryCode != null && countryCode.length() == 2)
return countryCode.toLowerCase();
}
// if network country not available (tablets maybe), get country code from Locale class
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
countryCode = context.getResources().getConfiguration().getLocales().get(0).getCountry();
} else {
countryCode = context.getResources().getConfiguration().locale.getCountry();
}
if (countryCode != null && countryCode.length() == 2)
return countryCode.toLowerCase();
// general fallback to "us"
return "us";
}
@SuppressLint("PrivateApi")
private static String getCDMACountryIso() {
try {
// try to get country code from SystemProperties private class
Class<?> systemProperties = Class.forName("Android.os.SystemProperties");
Method get = systemProperties.getMethod("get", String.class);
// get homeOperator that contain MCC + MNC
String homeOperator = ((String) get.invoke(systemProperties,
"ro.cdma.home.operator.numeric"));
// first 3 chars (MCC) from homeOperator represents the country code
int mcc = Integer.parseInt(homeOperator.substring(0, 3));
// mapping just countries that actually use CDMA networks
switch (mcc) {
case 330: return "PR";
case 310: return "US";
case 311: return "US";
case 312: return "US";
case 316: return "US";
case 283: return "AM";
case 460: return "CN";
case 455: return "MO";
case 414: return "MM";
case 619: return "SL";
case 450: return "KR";
case 634: return "SD";
case 434: return "UZ";
case 232: return "AT";
case 204: return "NL";
case 262: return "DE";
case 247: return "LV";
case 255: return "UA";
}
} catch (ClassNotFoundException ignored) {
} catch (NoSuchMethodException ignored) {
} catch (IllegalAccessException ignored) {
} catch (InvocationTargetException ignored) {
} catch (NullPointerException ignored) {
}
return null;
}
また、別のアイデアは、次のようなAPIリクエストを試すことです answer 。
ユーティリティ関数を作成しました(ロケールに基づいて間違った国コードを取得しているデバイスで一度テストしました)。お役に立てば幸いです。 リファレンス: https://github.com/hbb20/CountryCodePickerProject/blob/master/ccp/src/main/Java/com/ hbb20/CountryCodePicker.Java#L1965
fun getDetectedCountry(context: Context, defaultCountryIsoCode: String): String {
detectSIMCountry(context)?.let {
return it
}
detectNetworkCountry(context)?.let {
return it
}
detectLocaleCountry(context)?.let {
return it
}
return defaultCountryIsoCode
}
private fun detectSIMCountry(context: Context): String? {
try {
val telephonyManager = context.getSystemService(Context.TELEPHONY_SERVICE) as TelephonyManager
Log.d(TAG, "detectSIMCountry: ${telephonyManager.simCountryIso}")
return telephonyManager.simCountryIso
} catch (e: Exception) {
e.printStackTrace()
}
return null
}
private fun detectNetworkCountry(context: Context): String? {
try {
val telephonyManager = context.getSystemService(Context.TELEPHONY_SERVICE) as TelephonyManager
Log.d(TAG, "detectNetworkCountry: ${telephonyManager.simCountryIso}")
return telephonyManager.networkCountryIso
} catch (e: Exception) {
e.printStackTrace()
}
return null
}
private fun detectLocaleCountry(context: Context): String? {
try {
val localeCountryISO = context.getResources().getConfiguration().locale.getCountry()
Log.d(TAG, "detectNetworkCountry: $localeCountryISO")
return localeCountryISO
} catch (e: Exception) {
e.printStackTrace()
}
return null
}