How about you use:

TelephonyManager c=(TelephonyManager) Context.getSystemService
(Context.TELEPHONY_SERVICE);

                switch (c.getNetworkType())
                {
                case TelephonyManager.NETWORK_TYPE_UNKNOWN:
                        Log.i("CONNECTION", "UNKNOWN");
                        break;
                case TelephonyManager.NETWORK_TYPE_EDGE:
                        Log.i("CONNECTION", "EDGE");
                        break;
                case TelephonyManager.NETWORK_TYPE_GPRS:
                        Log.i("CONNECTION", "GPRS");
                        break;
                case TelephonyManager.NETWORK_TYPE_UMTS:
                        Log.i("CONNECTION", "UMTS");
                        break;
                }

might do the trick ;)

Moto!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to