Showing posts with label Internet Connection. Show all posts
Showing posts with label Internet Connection. Show all posts

Saturday, March 17, 2012

Internet Connection check tutorial

How to check Internet Connection in android phone

boolean connected = false;
ConnectivityManager connectivityManager = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
if(connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE).getState() == NetworkInfo.State.CONNECTED || connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI).getState() == NetworkInfo.State.CONNECTED) {
 //we are connected to a network
 connected = true;
}
else
 connected = false;