开发者_C百科Hi there any way we can get the country name of the incoming call on android phone?
Using libphonenumber
public String convertPhoneNumber(String phoneNumber, PhoneNumberUtil.PhoneNumberFormat format) {
    String resultNumber = "";
    Phonenumber.PhoneNumber myNumberProto = null;
    PhoneNumberUtil phoneUtil = PhoneNumberUtil.getInstance();
    if (!phoneNumber.substring(0, 1).equals("+")) {
        try {
            myNumberProto = phoneUtil.parse(phoneNumber,
                    Locale.getDefault().getCountry().toUpperCase());
            resultNumber = phoneUtil.format(myNumberProto,
                    format);
        } catch (NumberParseException e) {
            System.err.println("NumberParseException was thrown: " + e.toString());
        }
    } else {
        try {
            myNumberProto = phoneUtil.parse(phoneNumber, "ZZ");
            resultNumber = phoneUtil.format(myNumberProto,
                    format);
        } catch (NumberParseException e) {
            System.err.println("NumberParseException was thrown: " + e.toString());
        }
    }
    return resultNumber;
}
public String getRegionOfPhoneNumber(String callNumber) {
    PhoneNumberUtil phoneUtil = PhoneNumberUtil.getInstance();
    Phonenumber.PhoneNumber myNumberProto = null;
    callNumber = convertPhoneNumber(callNumber, PhoneNumberUtil.PhoneNumberFormat.E164);
    try {
        myNumberProto = phoneUtil.parse(callNumber, "ZZ");
    } catch (NumberParseException e) {
        e.printStackTrace();
    }
    String result = "";
    if (myNumberProto != null) {
        result = phoneUtil.getRegionCodeForCountryCode(myNumberProto.getCountryCode());
    }
    return result;
}
public String getCountryNameOfPhoneNumber(String callNumber) {
    String result = "";
    String regionCode = getRegionOfPhoneNumber(callNumber);
    if (!regionCode.equals("")) {
        result = new Locale("", regionCode).getDisplayCountry(Locale.getDefault());
    }
    return result;
}
usage : getCountryNameOfPhoneNumber("phone number");
Hope this help someone
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论