如何让PhoneNumberUtil识别数组?

时间:2018-04-28 16:50:37

标签: java android arrays libphonenumber phonenumberutils

我在Recyclerview中有一个包含电话号码的联系人列表。我希望PhoneNumberUtil(libphonenumber)通过比较传入号码和列表中的号码来告诉我其中一个联系人是否正在呼叫。目前,这仅适用于只有一个电话号码的联系人。我想要的是它可以与具有多个数字的联系人一起工作。

这是我的代码的一部分:

String listNumbers = listItem.getNumbers().toString();

                System.out.println(listNumbers);

                PhoneNumberUtil pnu = PhoneNumberUtil.getInstance();

                PhoneNumberUtil.MatchType mt = pnu.isNumberMatch(listNumbers, number);
                if (mt == PhoneNumberUtil.MatchType.NSN_MATCH || mt == PhoneNumberUtil.MatchType.SHORT_NSN_MATCH || mt == PhoneNumberUtil.MatchType.EXACT_MATCH) {
                    if (selected) {
                        NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
                        if (notificationManager != null) {
                            notificationManager.setInterruptionFilter(NotificationManager.INTERRUPTION_FILTER_NONE);
                        }
                    }
                }

这就是我的System Out的样子:

I/System.out: [029-426-9301, 029-426-9302, 029-426-9303]
I/System.out: [044-070-2586]
I/System.out: [225-649-86, 225-649-86]
I/System.out: [078-885-21174]

我尝试过:

我已经尝试格式化String数组,以便用逗号替换逗号,如下所示:[029-426-9301] [029-426-9302] [029-426-9303]。然而,这没有任何区别,数字仍未得到承认。

我会感激一些建议。

1 个答案:

答案 0 :(得分:0)

You could do something like this:

boolean isMatch = false;
String matchedNumber = null;

for (String currentNumber : listItem.getNumbers ()) {
    PhoneNumberUtil.MatchType mt = pnu.isNumberMatch (currentNumber, number);
    if (mt == PhoneNumberUtil.MatchType.NSN_MATCH || mt == PhoneNumberUtil.MatchType.SHORT_NSN_MATCH || mt == PhoneNumberUtil.MatchType.EXACT_MATCH) {
        isMatch = true;
        matchedNumber = currentNumber;

        break;
    }
}

if (isMatch) {
    // your business logic
}