I am using the following function to check network connectivity but application crashes when wifi status is swapped
public static boolean isNetworkAvailable(Context context) {
ConnectivityManager connec = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = connec.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnected() == true) {
return true;
}
return false;
}
it took some time to shift between networks...
So Now if we disable the wifi it automatically get connected to mobile network after few seconds.. and if we enable the wifi then it get connected to wifi network again...
The thread in your application is checking the connectivity before that shift...
check the conversation here
Android: How to Enable/Disable Wifi or Internet Connection Programmatically