Does Android broadcast an intent when the network state has changend, i.e. from GSM to Wifi? And if so what permission do I need and what is the intent action called?
Update: please use this instead: https://mcmap.net/q/11687/-broadcast-intent-when-network-state-has-changend
There isn't anything exactly like what you are describing but you can use ConnectivityManager.CONNECTIVITY_ACTION
to monitor changes and use the extras that come with it to see if the connection has changed from GSM to Wifi and vice versa. For this you need the permission android.permission.ACCESS_NETWORK_STATE
and android.permission.ACCESS_WIFI_STATE
for checking wifi information.
Android will broadcast WifiManager.NETWORK_STATE_CHANGED_ACTION
when the devices
gains or looses wifi connectivity. You'll need the permission android.permission.ACCESS_WIFI_STATE
to receive the intent. However, I'm not sure if
there's something similar for GSM -> WIFI.
© 2022 - 2024 — McMap. All rights reserved.