Skip to content

Instantly share code, notes, and snippets.

@ckashby
Created July 25, 2014 18:50
Show Gist options
  • Save ckashby/c45bef6e29d284f12c33 to your computer and use it in GitHub Desktop.
Save ckashby/c45bef6e29d284f12c33 to your computer and use it in GitHub Desktop.
public void myClickHandler(View view) {
...
ConnectivityManager connMgr = (ConnectivityManager)
getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo = connMgr.getActiveNetworkInfo();
if (networkInfo != null && networkInfo.isConnected()) {
// fetch data
} else {
// display error
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment