Home > database >  Android How GridView add static content
Android How GridView add static content

Time:08-20

recyclerview

I tried to layout this way, but it didn't work. What should I do? Thank you for any help

CodePudding user response:

Grid views just do the grid, they don't hold other views. You have to make these ImageViews items in your grid. That may mean using a multi-type gridview, one type for your normal items and one for your static items, with two different viewholders.

  • Related