I want to know which method will be precise to check the network state for successfully getting connected.
Difference between NetworkInfo.isConnected() and NetworkInfo.getDetailedState() == NetworkInfo.DetailedState.CONNECTED. What to use?
882 Views Asked by Shubham Dadhich At
3
There are 3 best solutions below
0

Java:
ConnectivityManager manager =
(ConnectivityManager)getApplication.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo info=manager.getActiveNetworkInfo()
if(info!=null && info.isConnected()){
// you are online for sure.
}
Kotlin:
val manager = application.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
val info = manager.getActiveNetworkInfo()
if (info != null && info.isConnected()) {
// you are online for sure.
}
I use Above code in my development to be sure that my device is connected to internet.
Read this thread to know the difference and how state can be changed
0

from source code
public boolean isConnected() {
synchronized (this) {
return mState == State.CONNECTED;
}
}
so it's the same
From here https://developer.android.com/training/monitoring-device-state/connectivity-monitoring#java
ConnectivityManager cm =
(ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo activeNetwork = cm.getActiveNetworkInfo();
boolean isConnected = activeNetwork != null &&
activeNetwork.isConnected();
you will need to add this to your manifest
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
So if we look at the source code of
NetworkInfo.java
class you will see that the network detailed states are declared as Enum,But if you read the comments for these DetailedState it says below about these
The
isConnected()
method inside the NetworkInfo.java class is checking against theState.CONNECTED
State
only,Essentially if you use
that should suffice as above code will query the active network and determine if it has Internet connectivity. Once you know it, you can proceed with accessing internet resource.