TelephoneNumberUtil 类有什么用?

发布于 2024-11-26 04:17:36 字数 110 浏览 2 评论 0原文

我想了解 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

那小子欠揍 2024-12-03 04:17:36

根据 文档 public class PhoneNumberUtils 包含

处理电话号码字符串的各种实用程序

According to the documentation public class PhoneNumberUtils contains

various utilities for dealing with phone number strings

不寐倦长更 2024-12-03 04:17:36

简单回答

设置国际电话号码的格式。

详细答案

如果您有号码 1234567890 并且需要将其格式化为美国号码格式
像这样

123-456-7890

那么你应该使用 formatNumber 方法

PhoneNumberUtils.formatNumbe(yourPhoneString); 

注意此方法已弃用,请改用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 format
to be like this

123-456-7890

then you should use formatNumber method

PhoneNumberUtils.formatNumbe(yourPhoneString); 

Notice this method deprecated use instead formatNumber (String phoneNumber,
String defaultCountryIso)

Reference

https://developer.android.com/reference/android/telephony/PhoneNumberUtils.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文