TelephoneNumberUtil 类有什么用?
我想了解 Android 中 TelephoneNumberUtil
类的基本用法。我对此进行了搜索,但在 Android 中我无法得到正确的答案。谁能解释一下这个类的具体用途吗?
I want to know the basic use of TelephoneNumberUtil
class in Android. I searched on that but in the Android I'm not able to get a proper answer. Can anyone explain me the exact use of this class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它是一个国际电话号码格式化程序。
It is a formatter for international phone numbers.
根据 文档
public class PhoneNumberUtils
包含According to the documentation
public class PhoneNumberUtils
contains简单回答
设置国际电话号码的格式。
详细答案
如果您有号码
1234567890
并且需要将其格式化为美国号码格式像这样
123-456-7890
那么你应该使用 formatNumber 方法
注意此方法已弃用,请改用formatNumber (字符串电话号码,
String defaultCountryIso)
参考
https://developer. android.com/reference/android/telephony/PhoneNumberUtils.html
Simple answer
Format an international telephone number.
Detailed Answer
if you have number
1234567890
and you need format it US number formatto be like this
123-456-7890
then you should use formatNumber method
Notice this method deprecated use instead formatNumber (String phoneNumber,
String defaultCountryIso)
Reference
https://developer.android.com/reference/android/telephony/PhoneNumberUtils.html