当前位置: 代码迷 >> Android >> android 检测是不是有网络连接
  详细解决方案

android 检测是不是有网络连接

热度:102   发布时间:2016-05-01 17:09:31.0
android 检测是否有网络连接

public static boolean isNetWorkAvailable(Context context) {		  		      ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);		  		       NetworkInfo info = cm.getActiveNetworkInfo();		  		      return info != null && info.isConnected();		   		  }
?
  相关解决方案