android – 如何使用LeDeviceListAdapter尝试找到BLE设备?

前端之家收集整理的这篇文章主要介绍了android – 如何使用LeDeviceListAdapter尝试找到BLE设备?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在 Android中使用应用程序,并遵循Android developers page代码建议

当我键入代码

private LeDeviceListAdapter mLeDeviceListAdapter;

它有错误信息:

LeDeviceListAdapter cannot be resolved to a type

我该怎么解决这个错误

解决方法

代码实际上只是Android SDK中的BTLE示例项目的提取.您应该一起阅读与示例项目的文章.

示例项目的路径是/ sdk / samples / android-18 / legacy / BluetoothLeGatt

如果您只对LeDeviceListAdapter感兴趣,这里是pastebin中的代码

另外我建议您阅读关于AdapterView(ListView的父)和Adapter的工作原理.与实际的BLE工作无关,但如果您不明白发生了什么,您将受益于理解示例代码.

原文链接:https://www.f2er.com/android/312978.html

猜你在找的Android相关文章