I'm making an application for Android that needs to react to when the device gets connected to a WiFi network, I'm currently trying to implement it using a BroadcastReceiver to monitor android.net.ConnectivityManager.CONNECTIVITY_ACTION - is this way correct, or is there a way that would be more appropriate?
|
@Jase, You need to register to receive For sample code on achieving this, look here. |
|||
|
|
|
Take a look at WifiManager.WIFI_STATE_CHANGED_ACTION
and WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION
Read from the broadcast or do a check when you get any of them like:
Now you can check state, it will be one of
|
|||
|
|