Friday, February 22, 2013

Internet Connection check tutorial


How to check Internet Connection in android phone

?
1
2
3
4
5
6
7
8
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;

No comments:

Post a Comment