在 Android 1.5 上获取小区 RSSI(网络信号强度)
有没有办法在 Android 1.5 上检索当前的蜂窝信号强度 (RSSI)?
我知道有一种方法可以通过 TelephonyManager 监听信号强度更新,但这似乎只给出“状态”,而不是数值。
使用相邻小区的 RSSI 字段是否相当准确?我猜不会,但我已经没有主意了。
Is there any way to retrieve the current cellular Signal Strength (RSSI) on Android 1.5?
I know there's a way to listen for signal strength updates through the TelephonyManager
, but this seems to only give a "state," not a numeric value.
Is using the RSSI field on a neighboring cell fairly accurate? I'm guessing not, but I'm running out of ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
TelephonyManager.listen 带有标志 LISTEN_SIGNAL_STRENGTHS
http://developer.android.com/reference/ android/telephony/PhoneStateListener.html
TelephonyManager.listen with flag LISTEN_SIGNAL_STRENGTHS
http://developer.android.com/reference/android/telephony/PhoneStateListener.html
Android 版本之间似乎存在某种 API 更改。
这个问题的答案 应该给你一些进一步研究的要点。
It seems that there is some kind of API change between the Android Versions.
The answer to this question should give you some points to look further into this.
这是使用 PhoneStatuslistener 的教程。
是一个学习示例教程,它在我编程时对我很有帮助。
http://www.firstdroid.com/2010 /05/12/get-provider-gsm-signal-strength/
阿德里安。
Here is a tutorial that uses a PhoneStatuslistener.
Is a learn be example tutorial, it help me when I was programming.
http://www.firstdroid.com/2010/05/12/get-provider-gsm-signal-strength/
Adrian.