如何获取 Android CDMA 手机的电话号码?
TelephonyManager.getLine1Number() 适用于 GSM 手机,但不适用于 CDMA 手机。是否有可能通过 Android API 调用获取 CDMA 手机的电话号码?谢谢
The TelephonyManager.getLine1Number() works on GSM phones, but not CDMA phones. Is it possible to get the phone number of a CDMA phone through android API calls at all? thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我已在 Motorola Droid 和 HTC EVO 4G(均为 CDMA)上成功使用了以下内容。
确保您在清单中请求正确的权限。
I've successfully used the following on a Motorola Droid and HTC EVO 4G which are both CDMA.
Make sure you are requesting the correct permission in your manifest.
尽管建议的方法可能有效,但某些运营商(我相信这是他们的选择)不提供此号码,而是返回 null。
文档中说明了返回 null: http://developer.android.com/reference /android/telephony/TelephonyManager.html
(向下滚动到该方法的文档)。
以下是可能的解决方法的链接:
http://code.google.com/p/android/issues /detail?id=1110#c5
Although the method suggested might work, some carriers (I believe it's their choice) do not provide this number, returning null instead.
Returning null is stated in the documentation: http://developer.android.com/reference/android/telephony/TelephonyManager.html
(scroll down to the method's documentation).
Here is a link for a possible work-around:
http://code.google.com/p/android/issues/detail?id=1110#c5