I want to execute my application offline also, so I need to check if currently an internet connection is available or not. Can anybody tell me how to check if internet is available or not in android? Give sample code. I tried with the code below and checked using an emulator but it’s not working
public boolean isInternetConnection()
{
ConnectivityManager connectivityManager = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
return connectivityManager.getActiveNetworkInfo().isConnectedOrConnecting();
}
Thanks
This will tell if you’re connected to a network:
Warning: If you are connected to a WiFi network that doesn’t include internet access or requires browser-based authentication,
connectedwill still be true.You will need this permission in your manifest: