Skip to content

Instantly share code, notes, and snippets.

@mstefanko
Created March 28, 2011 13:25
Show Gist options
  • Save mstefanko/890440 to your computer and use it in GitHub Desktop.
Save mstefanko/890440 to your computer and use it in GitHub Desktop.
Can app access internet
*@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