I have a CustomView that is a LinearLayout where it contains
TextView RecyclerView TheRecyclerViewItem
That's because I need to do something like this :
The first picture it works fine, but when trying to populate the list with more items, it gets the size of the Item and I'd like to make it a bit smaller so I can see in the screen the second item, otherwise the list only have visible one item at once, and that's normal because I'm using the same view for the item of recycler view than my first image, but I didn't want to duplicate layout, if that's the only solution I'll do it, but I'm trying to figure it out a "better" solution than duplicating and make it a different width.