Check whether network is available on Android phone.
Check the network in android using this function In some Android applications, they can be run properly once the network on device is enable. Or, Android developers want to check the network status before proceed. The simple code snippet I will show today is so simple but sometime it will take you a little bit of time to find/research. This routine was run and tested as well on Android 2.2 (API 8) /** * Checks whether the network is available on Android device. * If the network signal is very low, it will be evaluated as NOT available. * This routine will check both MOBILE and WIFI signal. * If both of them are in disable status, <code>false</code> will be return absolutely. * </p> * Return <code>true</code> if the network is available. Otherwise, return <code>false</code>. * </p> * * @param ctx Context. * * @return <code>True</code> : the network is available.</br> * ...