Skip to content

Instantly share code, notes, and snippets.

@codesburner
Forked from mstefanko/gist:890440
Created April 5, 2011 08:21
Show Gist options
  • Select an option

  • Save codesburner/903235 to your computer and use it in GitHub Desktop.

Select an option

Save codesburner/903235 to your computer and use it in GitHub Desktop.
*@return boolean return true if the application can access the internet
*/
private boolean haveInternet(){
NetworkInfo info=(ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE).getActiveNetworkInfo();
if(info==null || !info.isConnected()){
return false;
}
if(info.isRoaming()){
//here is the roaming option you can change it if you want to disable internet while roaming, just return false
return true;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment