联系人号码的格式
我正在为 Android 编写一些短信应用程序,但遇到问题。我从一个模拟器向另一个模拟器发送短信。该短信的发送电话号码为“15555215556”。当我将该号码保存到联系人时,它会以“+1-555-521-5556”格式保存。接下来,当我的应用程序搜索电话簿以查找匹配的电话号码时,它找不到任何电话号码,因为“15555215556”与“+1-555-521-5556”(在电话簿中)不同。
是否有任何内置类可以正确格式化给定的电话号码?
I'm writing some sms application for android and i have a problem. I send sms from one emulator to another. That sms has "15555215556" as phone number it was sent from. When i save that number to contacts, it's saved in "+1-555-521-5556" format. Next, when my app search phone book to find matching phone number, it couldn't find any, because "15555215556" is not the same as "+1-555-521-5556" (in phone book).
Is there any built-in class that can properly format given phone number?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有电话号码util类
http://developer.android.com/reference/ android/telephony/PhoneNumberUtils.html
否则您可以使用 libphoneumber
http://code.google。 com/p/libphonenumber/
仅 140 KB
There is the phone number util class
http://developer.android.com/reference/android/telephony/PhoneNumberUtils.html
otherwise you can use libphoneumber
http://code.google.com/p/libphonenumber/
only 140 KB