Skip to content Skip to sidebar Skip to footer

How To Get The Radio Type Of Android Phone(gsm,cdma,wcdma,lte)

I am using the google maps geolocation API. There is a field in there named radioType and the only supported values are GSM,CDMA,WCDMA, and LTE. Although these field is optional, I

Solution 1:

You can use telephonyManager to get the current network type

final TelephonyManager telephony = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);

and use the following function to get the network type

telephony.getNetworkType();

Post a Comment for "How To Get The Radio Type Of Android Phone(gsm,cdma,wcdma,lte)"