Is there any Android class/ api by which i can get current radio frequency of my cell whether GSM orCDMA. Any guidelines. Thanks
Asked
Active
Viewed 4,938 times
5
-
which frequency you are talking about ? – Lucifer Feb 01 '12 at 06:15
-
Need an app to get the current frequency being used by the phone's cell radio and display it when the app starts. Needs to work on GSM and CDMA – ALi Feb 01 '12 at 06:34
-
Then Specify properly it in your question so that everyone can understand it and give you proper answer – Lucifer Feb 01 '12 at 06:41
-
Did you get the solution? – Mercy Angel Jan 06 '20 at 07:38
2 Answers
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