Formatting phone number to E164 format in Android

坚强是说给别人听的谎言 提交于 2019-12-05 22:41:19

问题


I want convert every phone number from conatct in device to E164 format. So, I used opensource below.

libphonenumber

So I used it like here.

Phonenumber.PhoneNumber formattedNumber = null;
String formatted = null;

try {
    formattedNumber = phoneUtil.parse(phoneNumber, "KR");
    formatted = phoneUtil.format(formattedNumber,PhoneNumberUtil.PhoneNumberFormat.E164);

    if (StringUtils.isEmpty(formatted) == false && formatted.length() > 0 && StringUtils.isEmpty(name) == false && name.length() > 0) {
        listName.add(name);
        listPhoneNumber.add(formatted);
    }
} catch (NumberParseException e) {
    continue;
}

And I read that this library is used by the Android framework since 4.0.

The Java version is optimized for running on smartphones, and is used by the Android framework since 4.0 (Ice Cream Sandwich).

I want to use this from Android SDK. So I found this. Android SDK provides this PhoneNumberUtils .

And there is a function

formatNumberToE164(String phoneNumber, String defaultCountryIso)

It's really easy to use. but API level of this function is 21.

So My question is..How can I use PhoneNumberUtils to convert phonenumber to E164 under API Level 14(ICS) ~ 21?

Thanks.!


回答1:


The problem is PhoneNumberUtils.formatNumberToE164(...) is not available on older devices and there's nothing else in PhoneNumberUtils that does the same job.

I'd suggest using PhoneNumberUtils when available and libphonenumber on older devices, for example:

public String formatE164Number(String countryCode, String phNum) {

    String e164Number;
    if (TextUtils.isEmpty(countryCode)) {
        e164Number = phNum;
    } else {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            e164Number = PhoneNumberUtils.formatNumberToE164(phNum, countryCode);
        } else {
            try {
                PhoneNumberUtil instance = PhoneNumberUtil.getInstance();
                Phonenumber.PhoneNumber phoneNumber = instance.parse(phNum, countryCode);
                e164Number = instance.format(phoneNumber, PhoneNumberUtil.PhoneNumberFormat.E164);

            } catch (NumberParseException e) {
                Log.e(TAG, "Caught: " + e.getMessage(), e);
                e164Number = phNum;
            }
        }
    }

    return e164Number;
}


来源:https://stackoverflow.com/questions/30230983/formatting-phone-number-to-e164-format-in-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!