How to update onSignalStrength (Signal Strength)

842 views Asked by At

I have developed an app that listens signals strength. I used Phone State Listener for listening onSignalStrengthsChanged(SignalStrength signalStrength). SignalStrength is updated by phone. However, I want to update the signalStrength frequently. How to changes signal strength updating period in android programmability?

1

There are 1 answers

5
Jonas Köritz On

Android does not check this level more often to provide to the standard APIs. There is no option to poll this values. You would have to store the last value received through onSignalStrengthsChanged() and return the last value when your application needs it (if the faster polling rate is your goal).