0

I want to show diffrent view in single Recycler view
How can i do this.enter image description here

In Kotlin

Giorgos Neokleous
  • 1,709
  • 1
  • 14
  • 25
Sandeep Pareek
  • 1,636
  • 19
  • 21

2 Answers2

2

Your picture took from the article that describes how to merge 3 adapter into one recyclerView. So you can read it first.

i30mb1
  • 3,894
  • 3
  • 18
  • 34
1

You need to use a Recylerview view with Multiple View types. Each View Type will have its own ViewHolder, all of them having the same adapter.

Have a look at the below article. https://blog.mindorks.com/recyclerview-multiple-view-types-in-android

Shailesh Lobo
  • 43
  • 3
  • 10