I want to create RecyclerView with items which has always the same height but different width. It's quite easy with Horizontal Recycler View, but I want to do that with Vertical Recycler View.
The result should look like this:
___________________________________________
| |
|[................] [......] [........] |
|[......................] [..............] |
|[.....] [.................] |
|[......................] [......] |
| |
-------------------------------------------
How can I achieve that? Or maybe there is something better than recycler view?