Check Internet connectivity in Android App


Check internet connectivity presents in the user mobile or not, 
before using internet access from your app:

Create function:
it will give 
true (if network available)
false (if network not available)

public static boolean isNetworkAvailable(Context context) {
 
 ConnectivityManager connectivity = (ConnectivityManager) 
   context.getSystemService(Context.CONNECTIVITY_SERVICE);
 
  if (connectivity != null) {
NetworkInfo[] info = connectivity.getAllNetworkInfo();
        if (info != null) {
            for (int i = 0; i < info.length; i++) {
Log.w("INTERNET:",String.valueOf(i));
 
             if (info[i].getState() == NetworkInfo.State.CONNECTED) {
Log.w("INTERNET:", "connected!");
return true;
}
}
}
}
return false;
}

Comments