I find a solution to check internet access but it didn't works on all devices
How to check internet access on Android? InetAddress never times out
public boolean isOnline() {
ConnectivityManager cm =
(ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnectedOrConnecting()) {
return true;
}
return false;
}
This solution works on Samsung galaxy tab 2 1.10 (Android 4.1.2).
But not on HTC wildfire (Android 2.3.5)
On the second device netInfo is always null
Thanks for your help