当前位置: 代码迷 >> Android >> android 判断网络是不是连接可用
  详细解决方案

android 判断网络是不是连接可用

热度:59   发布时间:2016-05-01 19:28:48.0
android 判断网络是否连接可用
// 判断网络是否正常
public static boolean isNetworkAvailable(Context context) {
ConnectivityManager connectivity = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
if (connectivity == null) {
return false;
} else {
NetworkInfo info = connectivity.getActiveNetworkInfo();
if (info == null) {
return false;
} else {
if (info.isAvailable()) {
return true;
}
}
}
return false;
}
  相关解决方案