如何在android中连接的WiFi网络上自动检查互联网是否处于活动状态?我可以检查是否启用了 wifi 或是否连接了 wifi 网络,但我不确定如何检查互联网是否已连接?这可能吗?
private boolean connectionAvailable()
{
boolean connected = false;
ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
if (connectivityManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI).getState() == NetworkInfo.State.CONNECTED) {
//we are connected to a network
connected = true;
}
return connected;
}
上面检查是否启用了 wifi/wifi 连接但不是互联网。