Add ActionBar example
Project: http://git-wip-us.apache.org/repos/asf/flex-examples/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-examples/commit/dad386f5 Tree: http://git-wip-us.apache.org/repos/asf/flex-examples/tree/dad386f5 Diff: http://git-wip-us.apache.org/repos/asf/flex-examples/diff/dad386f5 Branch: refs/heads/develop Commit: dad386f5b11e381ed446c0763d858cf598545f66 Parents: fde34a8 Author: OmPrakash Muppirala <[email protected]> Authored: Fri Dec 19 15:34:41 2014 -0800 Committer: OmPrakash Muppirala <[email protected]> Committed: Fri Dec 19 15:34:41 2014 -0800 ---------------------------------------------------------------------- tourdeflexmobile/src/TourDeFlexMobile.mxml | 2 + tourdeflexmobile/src/UIViews/ActionBarView.mxml | 86 ++++++++++++++++++++ 2 files changed, 88 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-examples/blob/dad386f5/tourdeflexmobile/src/TourDeFlexMobile.mxml ---------------------------------------------------------------------- diff --git a/tourdeflexmobile/src/TourDeFlexMobile.mxml b/tourdeflexmobile/src/TourDeFlexMobile.mxml index 223b14f..8f12a7c 100644 --- a/tourdeflexmobile/src/TourDeFlexMobile.mxml +++ b/tourdeflexmobile/src/TourDeFlexMobile.mxml @@ -50,6 +50,7 @@ limitations under the License. import LayoutViews.TimeMachineLayoutView; import LayoutViews.VerticalLayoutView; + import UIViews.ActionBarView; import UIViews.ButtonBarView; import UIViews.CalloutButtonView; import UIViews.CheckboxView; @@ -216,6 +217,7 @@ limitations under the License. change="changeHandler(event)" contentBackgroundColor="#eeeeee" downColor="#e0e0e0" selectionColor="#33B5E5"> <s:ArrayList> <fx:Object label="UI COMPONENTS" type="separator"/> + <fx:Object label="ActionBar" type="view" view="{ActionBarView}"/> <fx:Object label="ButtonBar" type="view" view="{ButtonBarView}"/> <fx:Object label="CalloutButton" type="view" view="{CalloutButtonView}"/> <fx:Object label="CheckBox" type="view" view="{CheckboxView}"/> http://git-wip-us.apache.org/repos/asf/flex-examples/blob/dad386f5/tourdeflexmobile/src/UIViews/ActionBarView.mxml ---------------------------------------------------------------------- diff --git a/tourdeflexmobile/src/UIViews/ActionBarView.mxml b/tourdeflexmobile/src/UIViews/ActionBarView.mxml new file mode 100644 index 0000000..5329b85 --- /dev/null +++ b/tourdeflexmobile/src/UIViews/ActionBarView.mxml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + +Licensed to the Apache Software Foundation (ASF) under one or more +contributor license agreements. See the NOTICE file distributed with +this work for additional information regarding copyright ownership. +The ASF licenses this file to You under the Apache License, Version 2.0 +(the "License"); you may not use this file except in compliance with +the License. You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +--> +<s:View xmlns:fx="http://ns.adobe.com/mxml/2009" + xmlns:s="library://ns.adobe.com/flex/spark" title="ActionBar"> + <fx:Script> + <![CDATA[ + + protected function actionBarButtonHandler(event:MouseEvent):void + { + var labelStr:String = event.target.label; + label.text = labelStr; + } + + protected function buttonHandler(event:MouseEvent):void + { + if(currentState == "DemoState") + { + currentState = "InfoState"; + } + else if(currentState == "InfoState") + { + currentState = "DemoState"; + } + } + + ]]> + </fx:Script> + <s:states> + <s:State name="DemoState"/> + <s:State name="InfoState"/> + </s:states> + <fx:Declarations> + <s:MultiDPIBitmapSource id="aboutIcon" + source160dpi="@Embed('assets/icons/160/about.png')" + source240dpi="@Embed('assets/icons/240/about.png')" + source320dpi="@Embed('assets/icons/320/about.png')" + source480dpi="@Embed('assets/icons/480/about.png')"/> + <s:MultiDPIBitmapSource id="demoIcon" + source160dpi="@Embed('assets/icons/160/dock.png')" + source240dpi="@Embed('assets/icons/240/dock.png')" + source320dpi="@Embed('assets/icons/320/dock.png')" + source480dpi="@Embed('assets/icons/480/dock.png')"/> + </fx:Declarations> + <s:VGroup width="100%" height="100%" includeIn="DemoState" horizontalAlign="center" verticalAlign="middle"> + <s:ActionBar id="actionBar" width="100%" > + <s:navigationContent> + <s:Button label="Back" click="actionBarButtonHandler(event)" /> + <s:Button label="Next" click="actionBarButtonHandler(event)" /> + </s:navigationContent> + <s:actionContent> + <s:Button label="Menu" click="actionBarButtonHandler(event)" /> + <s:Button label="Save" click="actionBarButtonHandler(event)" /> + </s:actionContent> + </s:ActionBar> + <s:Spacer height="10"/> + <s:Label id="label" horizontalCenter="0" textAlign="center"/> + </s:VGroup> + <s:TextArea includeIn="InfoState" selectable="false" left="10" right="10" top="10" bottom="10" editable="false" text="The ActionBar class defines a component that includes title, navigation, and action content groups. The ActionBar control provides a standard area for navigation and action controls. It lets you define global controls that can be used from anywhere in the application, or controls specific to a view. + The ActionBar control defines three distinct areas: + 
 
Navigation area + 
 
Contains components that let the user navigate the section. For example, you can define a home button in the navigation area. Use the navigationContent property to define the components that appear in the navigation area. Use the navigationLayout property to define the layout of the navigation area. + 
 
Title area + 
 
Contains either a String containing title text, or components. If you specify components, you cannot specify a title String. Use the title property to specify the String to appear in the title area. Use the titleContent property to define the components that appear in the title area. Use the titleLayout property to define the layout of the title area. If you specify a value for the titleContent property, the ActionBar skin ignores the title property. + 
 
Action area + 
 
Contains components that define actions the user can take in a view. For example, you might define a search or refresh button as part of the action area. Use the actionContent property to define the components that appear in the action area. Use the actionLayout property to define the layout of the action area."/> + <s:actionContent> + <s:Button click="buttonHandler(event)" icon.DemoState="{aboutIcon}" icon.InfoState="{demoIcon}"/> + </s:actionContent> +</s:View>
