我想知道是否有任何意图或广播在始终连接wifi /数据网络时通知互联网连接/断开时。我知道CONNECTIVITY_CHANGE,但它仅在打开/关闭wifi /数据时通知。
谢谢
答案 0 :(得分:0)
就我而言,此代码块工作正常,您必须尝试
public boolean isInternetAvailable() {
try {
InetAddress ipAddress = InetAddress.getByName("google.com");
//You can replace it with your name
return !ipAddress.equals("");
} catch (Exception e) {
return false;
}
}