Skip to content

Instantly share code, notes, and snippets.

@afreakyelf
Created June 21, 2019 17:09
Show Gist options
  • Save afreakyelf/a2872430f07561b368775fdb673341a6 to your computer and use it in GitHub Desktop.
Save afreakyelf/a2872430f07561b368775fdb673341a6 to your computer and use it in GitHub Desktop.
To check internet Connectivity
public boolean isOnline() {
ConnectivityManager cm =
(ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnectedOrConnecting()) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment