Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ConnectivityManager getActiveNetworkInfo() is always null even with data traffic active

i'm working on a android project and i had the need to check for internet connection. i searched the web and i found a solution here on stackoverflow. However, i'm having problems on checking the internet state. I already searched everywhere but i can't find any solution for my problem.

Here is the manifest:

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />

Here is the code for checking if internet is connected:

cm = (ConnectivityManager) getSystemService(CONNECTIVITY_SERVICE);
if (cm != null) {
NetworkInfo ni = cm.getActiveNetworkInfo();
isConnected = (ni != null && ni.isAvailable() && ni.isConnected()) ? true : false;
}

The problem is that even with TYPE_MOBILE data traffic active the ni variable is always null. To access the operators internet traffic is this the correct way of testing it? Or i have to use TelephonyManager? It's wierd because i used getNetworkInfo()[] and debugged it, the HSPA for TYPE_MOBILE appears there but isAvalaible is always false and getState() = DISCONNECTED. However i have operator's data traffic enabled and working (in other applications)

[EDIT]: by the way im testing it directly in the device not in emulator :).

Thanks in advance. Regards.

like image 415
t.pateiro Avatar asked May 23 '11 14:05

t.pateiro


1 Answers

There are various bugs in ConnectivityManager.

See http://code.google.com/p/android/issues/detail?id=11866 and http://code.google.com/p/android/issues/detail?id=11891 for example.

like image 63
Timmmm Avatar answered Sep 21 '22 14:09

Timmmm