signal-strength

Which Values (High or Low) are better in Android's getGsmSignalStrength()

瘦欲@ 提交于 2019-11-27 18:14:26
问题 I'm playing around with reading the signal strengths in a small Android App, and was wondering if anyone has tested this (or just knows) of the documented values (0-31, 99) which value is better. By asking which is better, I mean, does 0 represent no signal, or perfect signal. I'm running an HTC Incredible on Verizon, so I can confirm the 99 is no GSM antenna, but I could not find any other items on GSM 回答1: The values are defined in the GSM standard TS 27.007, section 8.5 (Google it, or see

How to get LTE signal strength in Android?

孤街浪徒 提交于 2019-11-27 12:11:43
I am using Verizon's new LTE handset from HTC Thunderbolt. I cannot find the API to query for the signal strength while the handset is on LTE. By entering the field test mode ( # #4636# # ), I can see signal strength as -98dBm 2 asu. Anyone know what API I could use to get this info? Warning : this solution should work for Android below API17. Some people may have troubles with newer api or specific phone brand (like Huawei) You need to use this code. In fact, all the information you need is here : String ssignal = signalStrength.toString(); String[] parts = ssignal.split(" "); The parts[]

Get Signal Strength in Android

时光怂恿深爱的人放手 提交于 2019-11-27 11:56:49
I want to get the Signal Strength of the Device at the point I hit the API call. I have searched on all the related threads and I am not successful yet. So I would like to get the signal strength like SignalStrength ss = null ; // some initialization int n = ss.getGsmSignalStrength(); But while using this, it is obvious that I will get null pointer exception since I have initialised SignalStrength as null. But I don't know how to initialise this. Also that I don't want to use PhoneStateListener because it is triggered only if the signal changes. I am getting the Signal Strength using the below

Android: How do I get GSM signal strength for all available network operators

徘徊边缘 提交于 2019-11-27 00:41:37
I am working on a little app to check the signal strength of various network operators in my area. My current operators signal is quite unstable and I want to look into the strength of other GSM operators. Sofar I've been using the TelephonyManager and a PhoneStateListener with the onSignalStrengthsChanged call back to get the GSM Signal strength of the current network operator, but it seems that this class only gives me info on the signal strength of the network attached to my SIM card. I'm interested in measurement of GSM signal strength of ALL available operators. Searching the net has

How to calculate distance from Wifi router using Signal Strength?

南楼画角 提交于 2019-11-26 21:09:26
I would like to calculate the exact location of a mobile device inside a building ( so no GPS access) I want to do this using the signal strength(in dBm) of at least 3 fixed wifi signals(3 fixed routers of which I know the position) Google already does that and I would like to know how they figure out the exact location based on the this data Check this article for more details : http://www.codeproject.com/Articles/63747/Exploring-GoogleGears-Wi-Fi-Geo-Locator-Secrets FSPL depends on two parameters: First is the frequency of radio signals;Second is the wireless transmission distance. The

Get CellID, MCC, MNC, LAC, Signal strength, quality and Network in iOS 8.3

帅比萌擦擦* 提交于 2019-11-26 20:33:34
问题 How to get cell id using private apis in ios 8.3 as previous core telephony private apis are not working in latest ios sdk 8.3. 回答1: You can still use this. It's working on iOS 8.3. I don't know how to get signal strength. Apple has changed many things in Core Telephony lately. :( CTTelephonyNetworkInfo *telephonyInfo = [CTTelephonyNetworkInfo new]; NSString *carrierNetwork = telephonyInfo.currentRadioAccessTechnology; NSLog(@"Mobile Network): %@", carrierNetwork); CTCarrier *carrier =

How to get LTE signal strength in Android?

淺唱寂寞╮ 提交于 2019-11-26 15:58:18
问题 I am using Verizon's new LTE handset from HTC Thunderbolt. I cannot find the API to query for the signal strength while the handset is on LTE. By entering the field test mode ( # #4636# # ), I can see signal strength as -98dBm 2 asu. Anyone know what API I could use to get this info? 回答1: Warning : this solution should work for Android below API17. Some people may have troubles with newer api or specific phone brand (like Huawei) You need to use this code. In fact, all the information you

Get Signal Strength in Android

荒凉一梦 提交于 2019-11-26 13:03:35
问题 I want to get the Signal Strength of the Device at the point I hit the API call. I have searched on all the related threads and I am not successful yet. So I would like to get the signal strength like SignalStrength ss = null ; // some initialization int n = ss.getGsmSignalStrength(); But while using this, it is obvious that I will get null pointer exception since I have initialised SignalStrength as null. But I don\'t know how to initialise this. Also that I don\'t want to use

Android: How do I get GSM signal strength for all available network operators

一世执手 提交于 2019-11-26 09:27:09
问题 I am working on a little app to check the signal strength of various network operators in my area. My current operators signal is quite unstable and I want to look into the strength of other GSM operators. Sofar I\'ve been using the TelephonyManager and a PhoneStateListener with the onSignalStrengthsChanged call back to get the GSM Signal strength of the current network operator, but it seems that this class only gives me info on the signal strength of the network attached to my SIM card. I\

How to calculate distance from Wifi router using Signal Strength?

寵の児 提交于 2019-11-26 07:52:32
问题 I would like to calculate the exact location of a mobile device inside a building ( so no GPS access) I want to do this using the signal strength(in dBm) of at least 3 fixed wifi signals(3 fixed routers of which I know the position) Google already does that and I would like to know how they figure out the exact location based on the this data Check this article for more details : http://www.codeproject.com/Articles/63747/Exploring-GoogleGears-Wi-Fi-Geo-Locator-Secrets 回答1: FSPL depends on two