i've read some of WPF/silverlight controls , and i really liked some of them. one of the panels that i wish android could have is WrapPanel (as a layout , of course). has anyone else come across some code that implement it?
the way it layout its children is : for each row (or column, depending on the orientation) , if there is enough space for the child , put it , otherwise , go to the next row (or column, depending on the orientation) .
i think that the new GridLayout can give the same functionality , but sadly it isn't available for most APIs yet , and I can't find a way of how to compile only its code in order to have its code within my app .
can anyone please help? also , if you guys can give some more useful layouts implementation that you've seen , please write them too .