I have a some experience with Android dev but I'm totally lost in a simple task (At least it looks simple).
I have an ArrayList of Strings and I want to create buttons from Strings from the list on the layout. It doesn't have to be button - it can be any clickable object (with text).
The main problem is that I want to create them one after another, and when they dont fit on the screen - new line should be created.
Normal Linear Layout can arrange them horizontaly but will not create a new line. I also tried grid view and its almost it - but it's a grid so all colums are the same size (but texts can be different so I dont like it).
Any Ideas how to do this? Thanks in advance.