Skip to content

Instantly share code, notes, and snippets.

@teabow
Created February 6, 2015 23:49
Show Gist options
  • Select an option

  • Save teabow/b836e9693e683cd60901 to your computer and use it in GitHub Desktop.

Select an option

Save teabow/b836e9693e683cd60901 to your computer and use it in GitHub Desktop.
Android Connectivity Test
public static boolean isConnected(Context context) {
ConnectivityManager cm = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
return activeNetwork != null && activeNetwork.isConnectedOrConnecting();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment