Flex : Multy row TabBar?
问题 Is it possible, and how to do it ( if it is ) to have a multy row TabBar, based on the width of the container ? 回答1: It's as simple as giving your TabBar a TileLayout. You don't have to subclass TabBar and you don't even have to create a custom skin class for it. Just do this: <s:TabBar dataProvider="{dp}" left="0" right="0"> <s:layout> <s:TileLayout horizontalGap="-1" verticalGap="-1" requestedRowCount="2" /> </s:layout> </s:TabBar> Which will produce something like this: The gap below the