Does anyone know if there is a way to programmatically obtain the Network Notification setting on an Android device? This setting is what allows a user to be notified (or not) when a network is available. I simply need to retrieve the current value, not set it.
I have checked ConnectivityManager and also perused objects like WifiInfo and haven't seen anything that appears too useful. Thanks for any guidance.
You should make a broadcast receiver that will be triggered when a new network is availible by adding this to your manifest.
And then in your receiver you can check if there is connectivity.
}