我正在Android中开发,并尝试LiveData<List<customType>>
通过以下功能获得。
private fun getDataList(): LiveData<List<customType>> {
return room.getData()
}
我创建了一个如下参数:
private var customLiveData = MutableLiveData<List<customType>>()
如何设置getDataList()
为customLiveData
提前致谢。