如何禁用自杀网络助手进入Android设备?

时间:2016-08-31 14:05:54

标签: android wifi android-6.0-marshmallow captivenetwork captiveportal

当用户使用强制网络门户连接到开放式WiFi时,Android设备将打开带有强制网络门户/登录页面的浏览器实例。

我们要禁用它,因为我们使用了一个应用程序进行登录。

我遇到了CaptivePortal类到Android Marshmallow。我可以用它来禁用网络吗?

班级名称:android.net.CaptivePortal

方法名称:ignoreNetwork

如何使用上述类和方法禁用WiFi上自动启动强制网络门户?

1 个答案:

答案 0 :(得分:0)

试试这个:

private void CaptivePortalDetectionEnabled() {
    if (CaptiveChange.isChecked()) {
        Settings.Global.putInt(MainActivity.this.getContentResolver(), "captive_portal_detection_enabled", 1);
        Toast.makeText(MainActivity.this, "Captive portal detection is now " + state() + "\n 網路檢查服務已\"開啟\"", Toast.LENGTH_SHORT).show();
    } else {
        Settings.Global.putInt(MainActivity.this.getContentResolver(), "captive_portal_detection_enabled", 0);
        Toast.makeText(MainActivity.this, "Captive portal detection is now " + state() + "\n 網路檢查服務已\"關閉\"", Toast.LENGTH_SHORT).show();
    }
}