Package | spark.layouts |
Class | public class ViewMenuLayout |
Inheritance | ViewMenuLayout LayoutBase OnDemandEventDispatcher Object |
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | AIR 2.5 |
The requestedMaxColumnCount
property
defines the maximum number of menu items in a row.
By default, the property is set to three.
The ViewMenuLayout class define the layout as follows:
requestedMaxColumnCount
property contains
the default value of three, the menu items are displayed in a single row.
Each menu item has the same size.
If you define four or more menu items, meaning more menu items
than specified by the requestedMaxColumnCount
property,
the ViewMenu container creates multiple rows.
requestedMaxColumnCount
property,
each row contains the same number of menu items.
Each menu item is the same size.
For example the requestedMaxColumnCount
property
is set to the default value of three and you define six menu items.
The menu displays two rows, each containing three menu items.
requestedMaxColumnCount
property,
rows can contain a different number of menu items.
The size of the menu items depends on the number of menu items
in the row.
For example the requestedMaxColumnCount
property
is set to the default value of three and you define eight menu items.
The menu displays three rows.
The first row contains two menu items.
The second and third rows each contains three items.
You can create your own custom layout for the menu by creating your own layout class. By default, the spark.skins.mobile.ViewMenuSkin class defines the skin for the ViewMenu container. To apply a customized ViewMenuLayout class to the ViewMenu container, define a new skin class for the ViewMenu container.
The ViewMenuSkin class includes a definition for a Group
container named contentGroup
, as shown below:
<s:Group id="contentGroup" left="0" right="0" top="3" bottom="2" minWidth="0" minHeight="0"> <s:layout> <s:ViewMenuLayout horizontalGap="2" verticalGap="2" id="contentGroupLayout" requestedMaxColumnCount="3" requestedMaxColumnCount.landscapeGroup="6"/> </s:layout> </s:Group>
To apply your customized ViewMenuLayout class, your skin class
should define a container named contentGroup
.
That container uses the layout
property
to specify your customized layout class.
The <s:ViewMenuLayout>
tag inherits all of the tag
attributes of its superclass and adds the following tag attributes:
<s:ViewMenuLayout Properties horizontalGap="2" requestedMaxColumnCount="3" verticalGap="2" />
See also
Property | Defined By | ||
---|---|---|---|
clipAndEnableScrolling : Boolean
If true, specifies to clip the children to the boundaries of the viewport. | LayoutBase | ||
dropIndicator : DisplayObject
The DisplayObject that this layout uses for
the drop indicator during a drag-and-drop operation. | LayoutBase | ||
horizontalGap : Number
The horizontal space between columns, in pixels. | ViewMenuLayout | ||
horizontalScrollPosition : Number
The x coordinate of the origin of the viewport in the component's coordinate system,
where the default value is (0,0) corresponding to the upper-left corner of the component. | LayoutBase | ||
requestedMaxColumnCount : int
The maximum number of columns to display in a row. | ViewMenuLayout | ||
target : GroupBase
The GroupBase container whose elements are measured, sized and positioned
by this layout. | LayoutBase | ||
typicalLayoutElement : ILayoutElement
Used by layouts when fixed row/column sizes are requested but
a specific size isn't specified. | LayoutBase | ||
useVirtualLayout : Boolean
A container can hold any number of children. | LayoutBase | ||
verticalGap : Number
The vertical space between rows, in pixels. | ViewMenuLayout | ||
verticalScrollPosition : Number
The y coordinate of the origin of the viewport in the component's coordinate system,
where the default value is (0,0) corresponding to the upper-left corner of the component. | LayoutBase |
Method | Defined By | ||
---|---|---|---|
Constructor. | ViewMenuLayout | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void | OnDemandEventDispatcher | ||
Calculates the drop location in the data provider of the drop target for
the specified dragEvent. | LayoutBase | ||
clearVirtualLayoutCache():void
When useVirtualLayout is true,
this method can be used by the layout target
to clear cached layout information when the target changes. | LayoutBase | ||
dispatchEvent(event:Event):Boolean | OnDemandEventDispatcher | ||
elementAdded(index:int):void
Called by the target after a layout element
has been added and before the target's size and display list are
validated. | LayoutBase | ||
elementRemoved(index:int):void
This method must is called by the target after a layout element
has been removed and before the target's size and display list are
validated. | LayoutBase | ||
getElementBounds(index:int):Rectangle
Returns the specified element's layout bounds as a Rectangle or null
if the index is invalid, the corresponding element is null,
includeInLayout=false,
or if this layout's target property is null. | LayoutBase | ||
getHorizontalScrollPositionDelta(navigationUnit:uint):Number
Returns the change to the horizontal scroll position to handle
different scrolling options. | LayoutBase | ||
getNavigationDestinationIndex(currentIndex:int, navigationUnit:uint, arrowKeysWrapFocus:Boolean):int
Delegation method that determines which item
to navigate to based on the current item in focus
and user input in terms of NavigationUnit. | LayoutBase | ||
getScrollPositionDeltaToElement(index:int):Point
Computes the verticalScrollPosition and
horizontalScrollPosition deltas needed to
scroll the element at the specified index into view. | LayoutBase | ||
getVerticalScrollPositionDelta(navigationUnit:uint):Number
Returns the change to the vertical scroll position to handle
different scrolling options. | LayoutBase | ||
hasEventListener(type:String):Boolean | OnDemandEventDispatcher | ||
hideDropIndicator():void
Hides the previously shown drop indicator,
created by the showDropIndicator() method,
removes it from the display list and also stops the drag scrolling. | LayoutBase | ||
measure():void
Measures the target's default size based on its content, and optionally
measures the target's default minimum size. | LayoutBase | ||
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void | OnDemandEventDispatcher | ||
showDropIndicator(dropLocation:DropLocation):void
Sizes, positions and parents the drop indicator based on the specified
drop location. | LayoutBase | ||
updateDisplayList(width:Number, height:Number):void
Sizes and positions the target's elements. | LayoutBase | ||
updateScrollRect(w:Number, h:Number):void
Called by the target at the end of its updateDisplayList
to have the layout update its scrollRect. | LayoutBase | ||
willTrigger(type:String):Boolean | OnDemandEventDispatcher |
horizontalGap | property |
horizontalGap:Number
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | AIR 2.5 |
The horizontal space between columns, in pixels.
The default value is 2
.
This property can be used as the source for data binding.
public function get horizontalGap():Number
public function set horizontalGap(value:Number):void
See also
requestedMaxColumnCount | property |
requestedMaxColumnCount:int
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4 |
Runtime Versions : | AIR 1.5 |
The maximum number of columns to display in a row.
The default value is 3
.
public function get requestedMaxColumnCount():int
public function set requestedMaxColumnCount(value:int):void
verticalGap | property |
verticalGap:Number
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | AIR 2.5 |
The vertical space between rows, in pixels.
The default value is 2
.
This property can be used as the source for data binding.
public function get verticalGap():Number
public function set verticalGap(value:Number):void
See also
ViewMenuLayout | () | Constructor |
public function ViewMenuLayout()
Language Version : | ActionScript 3.0 |
Product Version : | Flex 4.5 |
Runtime Versions : | AIR 2.5 |
Constructor.