NetworkInfo state for WIFI returns disconnected when no internet connection available android 5.0

739 Views Asked by At

I want to detect that Is Wifi connected to a network? Doesn't matter whether it has Internet connection or not. But my following code returns Disconnected when my Wifi is connected to a network(no internet) and 3G data is enabled.

public static boolean isWifiConnected(ConnectivityManager mConnectivity){
        android.net.NetworkInfo info = mConnectivity.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
        if (info == null ) {
            Log.e("network type","null");
            return false;
        }
        return info.isConnected();
    }

Specification:

Android OS: 5.0.2
Moto g 1st generation
1

There are 1 best solutions below

6
On

I want to detect that Is Wifi connected to a network? Doesn't matter whether it has Internet connection or not.

If you doesn´t have any internet connection is impossible to determinate of what kind of connection you are disconnected!

More info:

isConnected ()

Indicates whether network connectivity exists and it is possible to establish connections and pass data.

Always call this before attempting to perform data transactions.

Returns true if network connectivity exists, false otherwise.