如何检查 Android 设备上的电话网络
我知道如何检查我是否可以访问互联网 (使用这篇文章中的代码),但是是否可以检查手机是否可以访问电话网络?例如,某人可能可以通过 Wifi 访问互联网,但无法访问电话网络来发送短信或拨打电话。
就我而言,在使用真实设备(三星 Galaxy S)时,我可以关闭 3G 网络(然后手机会检测到我没有连接到互联网),但我仍然可以拨打电话并发送短信短信。我想我一定是使用了其他网络...
如何测试手机网络是否已连接?我需要 TelephonyManager 吗?
谢谢您的宝贵时间。
梅尔
I know how to check if I have internet access (using the code from this post),but is it possible to check if a phone has telephone network access? For example someone might have access to the internet via Wifi but not have phone network access to send SMS or make calls.
In my case, while using a real device (Samsung Galaxy S), I am able to turn of my 3G network (then the phone will detect I am not connected to the internet), but I am still able to make phone calls and send SMS. I guess I must be using some other network...
How do I test whether the phone network is connected? Do I need the TelephonyManager?
Thankyou for your time.
Mel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然你不只是用这个:
getNetworkType()
Sure would you not just use this:
getNetworkType()
上面的答案对我的应用程序用户之一不起作用 - 他已连接到网络,但他的网络类型未知。屏幕截图: http://dl.dropbox.com/u/5072192/SC20130317- 161413.png
我改为检查 NetworkOperator 字段。 (从这里的第一个答案检查移动网络可用(无数据连接)的正确方法是什么)
The above answer did not work for one of my app users - he was connected to the Network but his NetworkType was unknown. Screenshot: http://dl.dropbox.com/u/5072192/SC20130317-161413.png
I am instead checking for the NetworkOperator field. (From the first answer here What is the correct way of checking for mobile network available (no data connection))