how to check any kind of network status in android... please give me code for this.. thnx...
A:
if (Context.getSystemService(Context.CONNECTIVITY_SERVICE).getNetworkInfo(
ConnectivityManager.TYPE_MOBILE)
|| Context.getSystemService(Context.CONNECTIVITY_SERVICE).getNetworkInfo(
ConnectivityManager.TYPE_WIFI) {
// do something
}
Mentalikryst
2010-09-26 05:31:42
thnx for the code
Sudipta for Android
2010-09-27 15:43:05
+1, but obtain the "active" network from the connectivity service.
mrrtnn
2010-10-05 06:27:00