Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I do something like a FlowLayout in Android?

share|improve this question

5 Answers

up vote 24 down vote accepted

If you watch the talk I gave at the Devoxx University day (available on parleys.com) you will learn how to do it yourself. During the talk I wrote a FlowLayout implementation live on stage to show how simple it is to write custom layouts.

The implementation is hosted here.

share|improve this answer
I think this may help nishantvnair.wordpress.com/2010/09/28/flowlayout-in-android – Adham Dec 17 '10 at 21:51
1  
thanks romain guy, that really helps. how about just giving the solution? or link?... I dont get how you answer was accepted. – Johann Hilbold Aug 2 '12 at 14:52
2  
@JohannHilbold: I just added the links – Macarse Oct 31 '12 at 14:54
Readers be aware that the code on the link has some serious issues and is far from drop-in solution. I've had two major issues in this small code base already. I won't post the fixes because they are duct tape solutions for my particular needs... – Nemanja Kovačević Feb 15 at 19:21
hmm. So it's not "simple" then?!! – noelicus May 16 at 16:08

No, there is no way to make widgets wrap like that as far as I know.

share|improve this answer

You would have to write your own layout manager class for this, sorry.

share|improve this answer

Try looking at answers to this question, there are some promising answers Line-breaking widget layout for Android

share|improve this answer

There is now an open-source Android FlowLayout available under the BSD license: https://github.com/ApmeM/android-flowlayout

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.