连接wifi时获取Internet状态更改

时间:2018-11-20 10:51:07

标签: java android broadcastreceiver android-broadcast android-internet

我想知道是否有任何意图或广播在始终连接wifi /数据网络时通知互联网连接/断开时。我知道CONNECTIVITY_CHANGE,但它仅在打开/关闭wifi /数据时通知。

谢谢

1 个答案:

答案 0 :(得分:0)

就我而言,此代码块工作正常,您必须尝试

public boolean isInternetAvailable() {
try {
    InetAddress ipAddress = InetAddress.getByName("google.com"); 
    //You can replace it with your name
        return !ipAddress.equals("");

    } catch (Exception e) {
        return false;
}

}