Android中获取用户的国家码

Android海外版app中,通常会同时支持多个国家,就会有选择国家的需求。为了提升用户体验,可以自动识别用户所在的国家,以简化交互。
下面代码的识别优先级依次为:SIM卡国家码、当前网络国家码、手机系统设置中的国家码。

import android.content.Context;
import android.content.res.Resources;
import android.telephony.TelephonyManager;
import android.text.TextUtils;

import androidx.core.os.ConfigurationCompat;
import androidx.core.os.LocaleListCompat;

    public String getCountry() {
        TelephonyManager tm = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
        String country = tm.getSimCountryIso(); // SIM卡国家码
        if (TextUtils.isEmpty(country)) {
            country = tm.getNetworkCountryIso(); // 当前网络国家码
        }
        if (TextUtils.isEmpty(country)) {
            country = getLocale().getCountry();
        }
        if (TextUtils.isEmpty(country)) {
            country = "";
        }
        return country.toUpperCase();
    }

    // 此处获取系统的Locale对象,而非app中的Locale对象
    public Locale getLocale() {
        Locale locale;
        try {
            LocaleListCompat listCompat = ConfigurationCompat.getLocales(Resources.getSystem().getConfiguration());
            locale = listCompat.get(0);
        } catch (Exception e) {
            locale = Locale.getDefault();
        }
        return locale;
    }

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值