Skip to content

Instantly share code, notes, and snippets.

@tony1223
Created June 7, 2013 20:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tony1223/5732145 to your computer and use it in GitHub Desktop.
Save tony1223/5732145 to your computer and use it in GitHub Desktop.
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
public class ConnectionDetector {
/**
* Checking for all possible internet providers
* **/
public static boolean isConnectingToInternet(Context context) {
if (context == null) {
throw new IllegalArgumentException("context can not be null.");
}
ConnectivityManager connectivity = (ConnectivityManager) context
.getSystemService(Context.CONNECTIVITY_SERVICE);
if (connectivity != null) {
NetworkInfo[] info = connectivity.getAllNetworkInfo();
if (info != null) {
for (int i = 0; i < info.length; i++) {
if (info[i].getState() == NetworkInfo.State.CONNECTED) {
return true;
}
}
}
}
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment