Android 终止应用程序内的 WiFi 功能
我的应用程序的主要要求之一是仅使用蜂窝互联网连接。 如果检测到 wifi 连接,应用程序必须禁用 wifi 功能并通过蜂窝互联网连接进行连接。 怎样才能做到呢? 谢谢, 埃亚尔。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我的应用程序的主要要求之一是仅使用蜂窝互联网连接。 如果检测到 wifi 连接,应用程序必须禁用 wifi 功能并通过蜂窝互联网连接进行连接。 怎样才能做到呢? 谢谢, 埃亚尔。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
检查 WIFI 连接
您可以使用以下代码来检查活动网络(如果有的话 - 在此处进行一些空检查)是否属于 WIFI 类型。
ConnectivityManager 中有一个 TYPE_WIFI int 常量,您可以使用它进行检查。 (getType 返回一个 int 来标识网络类型)。
有关活动管理器的更多信息,请访问 Android 开发网站。
禁用WIFI
为了禁用WiFi状态,您必须在应用程序清单中授予以下权限
。然后您可以使用WifiManager设置启用/禁用WIFI。
更多信息请参阅 http://developer.android.com/reference/android/ net/wifi/WifiManager.html
有关完整示例,请查看以下帖子:http://android-er.blogspot.com/2011/01/turn-wifi-onoff-using.html
Checking WIFI connection
You can use the following code to check if the active network (if any - do some null checks here) is of type WIFI.
There's a TYPE_WIFI int constant in ConnectivityManager that you can use for your check. (getType returns an int to identify the network type).
More info on the Activity Manager can be found on the Android dev site.
Disabling WIFI
n order to disable the WiFi state, you have to grant the following permission in the application manifest
You can then use the WifiManager to set enable/disable the WIFI.
More info on http://developer.android.com/reference/android/net/wifi/WifiManager.html
For a complete sample, check the following post : http://android-er.blogspot.com/2011/01/turn-wifi-onoff-using.html