I need to detect when I have network connectivity over WIFI. What broadcast is sent to establish that a valid network connection has been made. I need to validate that a valid network connection for HTTP exists. What should I listen for and what additional tests do I need to make to know that a valid connection exists. Thanks
|
|
You can register a Register the
And then in your
For more info, see the documentation for Of course you should check whether the device is already connected to WiFi before this. |
|||||
|
|
You can start a wifi connection if you give the user a choice to override the normal behavior of asking each time. I choose to use three methods...
This is quick check if there is an internet connect either Wifi or CellData. From here you can choose what action you want to take. Is it in Airplane mode needs to be checked also. On a separate thread. I set a variable IpAddress to = " " And poll until I have a valid an ip address.
Another code snippet... If its not on turn it on (with users prior permission)
|
|||
|
|
|
You'll want to use the ConnectivityManager. To check if WiFi specifically is enabled, do:
To make sure that a connection can be established, try connecting to a site. Here's an example:
Edited to add: in response to your later comments, the ConnectivityManager documentation explains the broadcasts it sends. |
|||||||||||
|
|
Here is an example of my code, that takes into account the users preference of only allowing comms when connected to Wifi. I am calling this code from inside an Note that
|
|||
|
|