...
Info |
---|
We need you to edit your item Layout, so it has a wrapper/holder for the Ads. |
Get the RecyclerView
Code Block | ||
---|---|---|
| ||
// Find your view, this is the simplest but there are better ways val rv = findViewById<RecyclerView>(R.id.infiniteScroll_recyclerView_manual) //Create and use your own adapter rv.adapter = <add your adapter> //Linear layour is the most common but feel free to swap it rv.layoutManager = LinearLayoutManager(this) |
...