There are a number of network types defined in TelephonyManager:

NETWORK_TYPE_GPRS
NETWORK_TYPE_EDGE
NETWORK_TYPE_UMTS
NETWORK_TYPE_CDMA
NETWORK_TYPE_EVDO_0
NETWORK_TYPE_EVDO_A
NETWORK_TYPE_1xRTT
NETWORK_TYPE_HSDPA
NETWORK_TYPE_HSUPA
NETWORK_TYPE_HSPA

Is there any info out there that describes what range of speeds you can expect on each of these? If that isn't available, it would be nice to be able to order them based on speed.

link|improve this question

64% accept rate
feedback

2 Answers

You could start with this Wikipedia page. It's fairly good, and has some convenient tables for ordering them.

The (general) ordering based on speed would be approximately:

NETWORK_TYPE_GPRS  #Slowest
NETWORK_TYPE_1xRTT
NETWORK_TYPE_CDMA
NETWORK_TYPE_EDGE
NETWORK_TYPE_UMTS
NETWORK_TYPE_EVDO_0
NETWORK_TYPE_EVDO_A
NETWORK_TYPE_HSDPA
NETWORK_TYPE_HSUPA
NETWORK_TYPE_HSPA  #Fastest

There's some wiggle room here, though. Particularly at the lower end of the spectrum.

link|improve this answer
feedback

Dont forget some are CDMA/3GPP2 and some are GSM/3GPP

You are unlikely to get both on the same phone.

Thus you should have two lists: GSM/3GPP: GPRS EDGE UMTS HSPDA HSPUA HSPA

CDMA/3GPP2: 1xRTT CDMA EVDO 0 EVDO A EVDO B

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.