需要在服务中使用ScanResult类
在我自己的服务中使用 android.net.wifi.ScanResult 类时遇到一些问题。 事实上,我注意到我的班级中的 CREATOR 丢失了,但是在 android 文档中(http://www.kiwidoc.com/java/l/x/android/android/8/p/android.net.wifi/c/扫描结果) CREATOR 出现了,我尝试过所有版本的 SDK,但我失去了希望...:(
任何人都可以帮助我吗?
谢谢,
安东尼。
Have some problem to use android.net.wifi.ScanResult class in my own service.
In fact i have noticed that CREATOR in my class is missing, but in android doc (http://www.kiwidoc.com/java/l/x/android/android/8/p/android.net.wifi/c/ScanResult)
CREATOR is present, i have tried with all versions of SDK and i lose hope... : (
Anyone can help me ?
Thanks,
Anthony.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ScanResult 类没有公共构造函数。它旨在从可用 WiFi 连接的扫描中返回,例如:
请参阅官方 ScanResult 的 Android 文档位于:
http://developer.android.com/reference/android/net/wifi /扫描结果.html
The ScanResult class does not have a public constructor. It is intended to be returned from a scan of available WiFi connections, for example:
Refer to the official Android documentation for ScanResult at:
http://developer.android.com/reference/android/net/wifi/ScanResult.html