gpt4 book ai didi

android - 如何在 Android 中使用位置服务获取国家/地区名称?

转载 作者:行者123 更新时间:2023-11-29 17:24:05 25 4
gpt4 key购买 nike

在我的应用程序中,我正在使用支付网关。根据 User Country,我必须更改 Payment method type。通过使用 Locale 我可以获得 Country 但它给出了 Device Configured/Manufactured country 这对我没有用。所以我正在尝试 Google Play 服务(定位服务) 。如何使用此 API 仅获取 Country name。我不需要纬度经度等。谢谢

最佳答案

如果设备是手机,那么你可以通过这种方式获取国家/地区。

 public static String getUserCountry(Context context) {
try {
final TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
final String simCountry = tm.getSimCountryIso();
if (simCountry != null && simCountry.length() == 2) { // SIM country code is available
return simCountry.toLowerCase(Locale.US);
}
else if (tm.getPhoneType() != TelephonyManager.PHONE_TYPE_CDMA) { // device is not 3G (would be unreliable)
String networkCountry = tm.getNetworkCountryIso();
if (networkCountry != null && networkCountry.length() == 2) { // network country code is available
return networkCountry.toLowerCase(Locale.US);
}
}
}
catch (Exception e) { }
return null;
}

然后,可以访问它:

Locale loc = new Locale("", getUserCountry(this));

TextView.setText(loc.getDisplayCountry());

附言:您需要添加权限:

<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

关于android - 如何在 Android 中使用位置服务获取国家/地区名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35288659/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com