I’m trying to get layout with horizontal non-scroll able texts where every textView tries to fit in the same line if there is enough space or it goes to the next line. I’m not really sure how to describe it but i mean something like this :
+=================+
|(text1) (text2) |
|(abc) (def) (ghi)|
|(longertext) |
| |
| |
| |
| |
+=================+
I don’t even know where to begin or how to look for something similar so any help will be highly appreciated. Thanks in advance.
You should have a look at this question. It points to a FlowLayout implementation by Romain Guy. It will do exactly what you are looking for.