Advertisement
dzikovskyy

Check network connection, Android

Jun 8th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. public static boolean isNetworkConnected(Context context) {
  2.         ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
  3.         NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
  4.         return activeNetwork != null && activeNetwork.isConnectedOrConnecting();
  5.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement