我正在使用Android中的应用程序,并且我遵循Android developers page
中的Codesuggestion当我输入代码时:
private LeDeviceListAdapter mLeDeviceListAdapter;
它有错误消息:
LeDeviceListAdapter无法解析为类型
我该怎么做才能解决这个错误?
答案 0 :(得分:8)
代码实际上只是Android SDK中BTLE示例项目的摘录。您应该一起阅读带有示例项目的文章。
示例项目的路径是/ sdk / samples / android-18 / legacy / BluetoothLeGatt
如果您只对LeDeviceListAdapter感兴趣,请参阅pastebin
中的代码另外,我建议您阅读AdapterView(ListView的父级)和适配器的工作原理。与实际的BLE工作无关,但如果您不了解正在发生的事情,您将会理解示例代码。
答案 1 :(得分:5)
LeDeviceListAdapter
类未内置于Android API中;你必须自己创造它。我在这个链接上找到了这个类 - 这是Android教程打算让你使用的类:
只需在页面中搜索“LeDeviceListAdapter”。