DEV Community

Discussion on: Kotlin and retrofit network calls

Collapse
 
microsoftjulius profile image
microsoftjulius

I dont know why when i run the code it returns the error E/RecyclerView: No adapter attached; skipping layout

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.

Collapse
 
paulodhiambo profile image
Odhiambo Paul

Please share your code through gist so that I can help you out