Android 终止应用程序内的 WiFi 功能

发布于 2024-11-14 03:46:23 字数 96 浏览 3 评论 0 原文

我的应用程序的主要要求之一是仅使用蜂窝互联网连接。 如果检测到 wifi 连接,应用程序必须禁用 wifi 功能并通过蜂窝互联网连接进行连接。 怎样才能做到呢? 谢谢, 埃亚尔。

One of the major requirments of my application is using cellular internet connection only.
In case of detecting wifi connection, the application have to disable the wifi ability and connecting through the cellualr internet connection.
How it can be done?
Thanks,
Eyal.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

演出会有结束 2024-11-21 03:46:23

检查 WIFI 连接

您可以使用以下代码来检查活动网络(如果有的话 - 在此处进行一些空检查)是否属于 WIFI 类型。

ConnectivityManager connManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = connManager.getActiveNetworkInfo();
if (netInfo!=null) {
    // detect type using netInfo.getType()
}

ConnectivityManager 中有一个 TYPE_WIFI int 常量,您可以使用它进行检查。 (getType 返回一个 int 来标识网络类型)。

有关活动管理器的更多信息,请访问 Android 开发网站

禁用WIFI

为了禁用WiFi状态,您必须在应用程序清单中授予以下权限

android.permission.CHANGE_WIFI_STATE

。然后您可以使用WifiManager设置启用/禁用WIFI。

WifiManager wifiManager = (WifiManager)getBaseContext().getSystemService(Context.WIFI_SERVICE);
wifiManager.setWifiEnabled(false);

更多信息请参阅 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.

ConnectivityManager connManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = connManager.getActiveNetworkInfo();
if (netInfo!=null) {
    // detect type using netInfo.getType()
}

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

android.permission.CHANGE_WIFI_STATE

You can then use the WifiManager to set enable/disable the WIFI.

WifiManager wifiManager = (WifiManager)getBaseContext().getSystemService(Context.WIFI_SERVICE);
wifiManager.setWifiEnabled(false);

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

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