I need to tell if my device has INTERNET connection or not. I found many answers like
private boolean isNetworkAvailable() {
ConnectivityManager connectivityManager
= (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();
return activeNetworkInfo != null;
}
taken from here
but this is not right, for example if I'm connected to a wireless network which doesn't have internet acces, this method will return true... Is there a way to tell if the device has internet connection and not if it is only connected to something?