DEV Community

Discussion on: Kotlin and retrofit network calls

Collapse
 
paulimjr profile image
Paulo Cesar

This is because you forget to register your adapter in your RecycleView

Basically you can do something like that. example below:

val listOfItems = lisfOf("1", "2", "3")
recyclerView.layoutManager = LinearLayoutManager(this)
recyclerView.adapter = YourAdapter(listOfItems)

This is quick example that you following. I hope helped you. see u.