Recyclerview Not Showing Kotlin
Recyclerview is not showing on screen just show white background. Is it there any mistake? Please tell me, thanks. Adapter class NeedsAdapter(var context: Context) : RecyclerView.A
Solution 1:
You have missed setting layout manager
recyclerView.layoutManager = LinearLayoutManager(this, LinearLayoutManager.VERTICAL ,false)
Post a Comment for "Recyclerview Not Showing Kotlin"