我正在
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