Friday, April 8, 2011

METHOD TO CHECK INTERNET IS AVAILABLE OR NOT

The following method returns true if internet is available and false if not available.

public boolean checkInternetAvailablity() 
{
         ConnectivityManager cm = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);                                         
          return cm.getActiveNetworkInfo().isConnected();

}

No comments:

Post a Comment