0

I am searching for a way to implement a fluid grid to display squares.
I found the RecyclerView combined with a StaggeredLayoutManager. The problem is that I just found the layout with a fixed column width. But I also want to have a variable row and column height and width.
What I want to achieve:

enter image description here

Freshchris
  • 1,211
  • 4
  • 17
  • 34
  • Your question is looking for a library, tutorial or some other off-site resource. So I have marked it for closure. Anyways, you could take a look at this: https://github.com/lucasr/twoway-view maybe make a binding project for it and give it a spin. It seems to fit your requirements. – Cheesebaron Sep 20 '16 at 23:09
  • This one could also be a possibility: https://github.com/Comcast/FreeFlow – Cheesebaron Sep 20 '16 at 23:23

1 Answers1

0

I solved the problem by writing my own algorithm to insert views into a standard Gridlayout.

Freshchris
  • 1,211
  • 4
  • 17
  • 34