当前位置: 代码迷 >> Android >> 判断Android装置是否连接网络
  详细解决方案

判断Android装置是否连接网络

热度:72   发布时间:2016-05-01 19:20:03.0
判断Android设备是否连接网络

/**
? *?判断Android客户端网络是否连接?
? * @param context
? * @return?真假
? */

?

?

public static boolean checkNet(Context context) {				try {			ConnectivityManager connectivity = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);			if (connectivity != null) {							NetworkInfo info = connectivity.getActiveNetworkInfo();				if (info != null && info.isConnected()) {									if (info.getState() == NetworkInfo.State.CONNECTED) {						return true;					}				}			}		} catch (Exception e) {		return false;}		return false;	}
  相关解决方案