I am check phone wifi state in onStart of the app, but even if it connected it return false, I already tried many things but did not work
here is what I am doing
@Override protected void onStart() {
super.onStart();
onStartStates();
}
onStartStates() method
private void onStartStates(){
ConnectivityManager cm = (ConnectivityManager) this.getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo net = cm.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
Log.d(TAG, "Wifi State 1"+net.isConnected());
Log.d(TAG, "Wifi State 2"+getCurrentSsid(esActivity.this));
}
getCurrentSsid() method
public static String getCurrentSsid(Context context) {
WifiInfo wifiInfo = getCurrentWifiInfo(context);
if (wifiInfo != null) {
return wifiInfo.getSSID();
}
return null;
}
public static WifiInfo getCurrentWifiInfo(Context context) {
final ConnectivityManager connManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
final NetworkInfo networkInfo = connManager.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
if (networkInfo != null && networkInfo.isConnected()) {
final WifiManager wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
return wifiManager.getConnectionInfo();
}
return null;
}
both method return false, even I switch wifi On just starting my app...any idea
Try the following method to detect if the device has network connectivity. getting current active network might help you.