我正在编写用diff utils更新的页面列表适配器。
作为数据,我正在使用使用此库https://github.com/OmarAflak/Bluetooth-Library的bluetoot设备
问题在于创建 LivePagedListBuilder 时 这是错误消息https://imgur.com/xP3ffI9
fun getPairedDevices(): LiveData<PagedList<BluetoothDevice>> {
if (devices == null){
bluetooth.onStart()
if (bluetooth.isEnabled){
val pairedDevices = (bluetooth.pairedDevices)
//There is a problem in this line
devices = LivePagedListBuilder(pairedDevices, Paging.config).build()
}
}
return devices!!
}