I have broadcast receiver for "CONNECTIVITY_CHANGE". When I print the extra using this:
intent.getExtras().toString()
I can see that if I disable WIFI, I receive 2 network change.
- WIFI DISCONNECTED
- MOBILE CONNECTED
However, when I try to use
NetworkInfo networkInfo = intent.getParcelableExtra(ConnectivityManager.EXTRA_NETWORK_INFO);
It said, this API has been deprecated. After that, I tried to use this
int networkType = intent.getParcelableExtra(ConnectivityManager.EXTRA_NETWORK_TYPE);
NetworkInfo networkInfo = connectivityManager.getNetworkInfo(networkType);
However, getNetworkInfo also has been deprecated.
The only option they give me was using getActiveNetworkInfo or getActiveNetwork.
If I use that, I will get 2 broadcast which will give me same network info.
Is there a better way to handle network state in Android ?
EXTRA NOTE:
Thanks for quick reply, but I am not looking for a way to check if I have internet connection or not.
I need to know which network has been disconnected and connected. The network state change is what I am looking for.
You can use this to check the internet is available or not: