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
If you doesn´t have any internet connection is impossible to determinate of what kind of connection you are disconnected!
More info: