Skip to content

Instantly share code, notes, and snippets.

@thrashedbrain
Last active January 13, 2021 21:49
Show Gist options
  • Save thrashedbrain/616dad7abc34b078732c28f51729399d to your computer and use it in GitHub Desktop.
Save thrashedbrain/616dad7abc34b078732c28f51729399d to your computer and use it in GitHub Desktop.
private boolean isNetworkConnected() {
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
return cm.getActiveNetworkInfo() != null && cm.getActiveNetworkInfo().isConnected();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment