Get Internet state change while wifi is connected

100 views Asked by At

I want to know if there is any intent or broadcast that notifies when internet is connected/disconnected while the wifi/data network is connected all the time. I am aware of CONNECTIVITY_CHANGE but it only notifies when wifi/data is switched on/off.

Thanks

1

There are 1 answers

4
Taha wakeel On

In my case this block of code is working fine, you must try it

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;
}

}