Android Question LTE 800 4G - CellSignalStrengthLte

Mr Blue Sky

Active Member
Licensed User
Longtime User
hello everybody,

someone there a B4A library for CellSignalStrengthLte i read PhoneStateListener already and nothing for the LTE 791-862 MHz

thank you
 

Michael Gasperi

Member
Licensed User
Longtime User
I was looking for LTE signal strength myself and found this unanswered question. Here is how I did it.

There is a string passed with the onSignalStrengthsChanged call that has a pile of numbers in it separated by spaces. Counting the word "SignalStrength:" as 0, LTE signal strength is the 8th element. I'll leave it to you on how to parse the string to just get this number.

0 SignalStrength:
1 GsmSignalStrength
2 GsmBitErrorRate
3 CdmaDbm
4 CdmaEcio
5 EvdoDbm
6 EvdoEcio
7 EvdoSnr
8 LteSignalStrength
9 LteRsrp
10 LteRsrq
11 LteRssnr
12 LteCqi
13 "gsm|lte" or "cdma"

It seems like you should be able to just poll for a state value like this.
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Upvote 0

sasidhar

Active Member
Licensed User
Longtime User
Hi,

can anyone share some sample code to get LTE parameters, how to pass the above values to get required output. all other methods are availables except LTE.

8 LteSignalStrength
9 LteRsrp
10 LteRsrq
11 LteRssnr
12 LteCqi
13 "gsm|lte" or "cdma"

thanks
sasidhar
 
Upvote 0
Top