需要在服务中使用ScanResult类

发布于 2024-10-09 18:26:48 字数 259 浏览 5 评论 0原文

在我自己的服务中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黑凤梨 2024-10-16 18:26:48

ScanResult 类没有公共构造函数。它旨在从可用 WiFi 连接的扫描中返回,例如:

WifiManager wifiMgr = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
if(wifiMgr.isWifiEnabled()) {
  List<ScanResult> scanResults = wifiMgr.getScanResults();
  for(ScanResult scanRes : scanResults) {
    // Do something with scanRes
  }
}

请参阅官方 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:

WifiManager wifiMgr = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
if(wifiMgr.isWifiEnabled()) {
  List<ScanResult> scanResults = wifiMgr.getScanResults();
  for(ScanResult scanRes : scanResults) {
    // Do something with scanRes
  }
}

Refer to the official Android documentation for ScanResult at:
http://developer.android.com/reference/android/net/wifi/ScanResult.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文