Is it possible to get data like radiation of device and cellular tower, Distance of cellular tower, And basic details of cellular network from android device programmatically.
Asked
Active
Viewed 2,708 times
0
-
1http://stackoverflow.com/questions/6668271/get-cell-tower-locations-android , please see the post that gets ur cell id – impathuri Sep 26 '15 at 01:45
-
hi @SatishPathuri can you describe answer with code? – RBK Sep 27 '15 at 19:42
1 Answers
2
You can get signal strength of the device, what kind of connection it is, etc. with the Telephony api : android.telephony.SignalStrength
Basic details of the network from ConnectivityManager: android.net.ConnectivityManager and android.net.NetworkInfo
Here is a link to a discussion on getting cell tower information: Retrieve cell towers information

Community
- 1
- 1

David C Adams
- 1,953
- 12
- 12
-
-
1If you read the documentation you'll see that the signal strength is in decibel milliwatts; so yes I would think so. – David C Adams Mar 17 '15 at 07:22