I am trying to get a list of signal strength (both cellular and wifi) in an android device. Do i achieve this using the Signal Strength class ?http://developer.android.com/reference/android/telephony/SignalStrength.html
Asked
Active
Viewed 1,148 times
1 Answers
1
For WiFi, you'll want to use the WifiManager class and call the getScanResults() function.
For cellular, you'll want to create a PhoneStateListener and handle the onSignalStengthChanged event.

Icemanind
- 47,519
- 50
- 171
- 296
-
Thanks ! Could you please share a little bit more on how to implement this ? – user2054702 Apr 15 '13 at 13:28