5

Is there any Android class/ api by which i can get current radio frequency of my cell whether GSM orCDMA. Any guidelines. Thanks

Pratik Bhat
  • 7,166
  • 2
  • 35
  • 57
ALi
  • 430
  • 7
  • 19

2 Answers2

1

I am not sure about it, but check the TelephonyManager you may find the solution to get frequecny.

Yugandhar Babu
  • 10,311
  • 9
  • 42
  • 67
0

As mentioned I would get the carrier name and then write intents depending on carrier.

TelephonyManager manager = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE));
String carrierName = manager.getNetworkOperatorName();
KDEx
  • 3,505
  • 4
  • 31
  • 39