I am creating an android app which relies on the internet. How do I handle the case in which the phone is connected to the Wifi but it is not actually working?
As in the case when there is an exclamation mark next to the wifi icon in the StatusBar
?
Wifi connected but not working
286 Views Asked by JSmith At
2
There are 2 best solutions below
0

You can detect wifi speed and if the speed is very low then you can handle the situation.
First, check if your connection type is wifi-
ConnectivityManager cm =
(ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
boolean isConnected = activeNetwork != null &&
activeNetwork.isConnectedOrConnecting();
boolean isWiFi = activeNetwork.getType() == ConnectivityManager.TYPE_WIFI;
if(isWifi){
WifiInfo wifiInfo = wifiManger.getConnectionInfo();
int mbps = wifiInfo.getLinkSpeed();
}
Add Permissions:
Try this mehod :