Showing posts with label internet in android. Show all posts
Showing posts with label internet in android. Show all posts

June 11, 2011

Checking Availability of Internet from Android

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();
}