在服务中,我使用以下功能验证Internet连接:
public static boolean isNetworkAvailable(Context context) {
ConnectivityManager connMgr = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo = connMgr.getActiveNetworkInfo();
return !(networkInfo == null || !networkInfo.isConnected());
}
问题是,如果我没有Internet连接,我将在日志中获取以下信息:
I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
I/System.out: KnoxVpnUidStorageknoxVpnSupported API value returned is false
所以android 5.1.1告诉我,我的应用程序正在减慢我的设备速度,而且总是有错误。
怎么了?谢谢。
最佳答案
这是一个实现检查互联网连接的功能。
public boolean isOnline(Context context) {
ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
android.net.NetworkInfo networkinfo = cm.getActiveNetworkInfo();
if (networkinfo != null && networkinfo.isConnected()) {
return true;
}
return false;
}