网站建设网银开通,浏阳建设局网站,phpcms网站后台,重庆森林粤语Flash Builder 4.5已经支持直接创建Flex Mobile Project#xff0c;写一个最简单的例子 1、建立工程 右击--》新建--》输入工程名“MyFirstMobileApp” 点击“Next”进入下一步 修改初始化的标题文本信息为“Home”#xff08;默认为HomeView#xff09;#xff0c;勾选“G…Flash Builder 4.5已经支持直接创建Flex Mobile Project写一个最简单的例子 1、建立工程 右击--》新建--》输入工程名“MyFirstMobileApp” 点击“Next”进入下一步 修改初始化的标题文本信息为“Home”默认为HomeView勾选“Google Android”、“Automatically reorient”默认这些已经都勾选了然后点击“Finish” 系统将自动生成一个views包如下图所示 2、编写代码 双击“MyFirstMobileAppHomeView.mxml”拖拽一个VGroup组件然后删除x、y属性修改width、height均为100%添加horizontalAlign”center” verticalAlign”middle”让其内容水平、垂直居中 在里面放置一个Label和一个Button然后再给Button添加一个事件完整的代码 ?xml version1.0 encodingutf-8?s:View xmlns:fxhttp://ns.adobe.com/mxml/2009 xmlns:slibrary://ns.adobe.com/flex/spark titleHomeViewfx:Declarations!-- Place non-visual elements (e.g., services, value objects) here --/fx:Declarationsfx:Script![CDATA[ private function button1_clickHandler(evt:MouseEvent):void { navigator.pushView(MyNewView); } ]]/fx:Scripts:VGroup width100% height100% horizontalAligncenter verticalAlignmiddles:Label textHello,World!/s:Button labelContinue clickbutton1_clickHandler(event) //s:VGroup/s:View 事件中navigator.pushView的参数MyNewView为接下来准备创建的Component(组件) 在views包中添加一个组件命名为“MyNewView” 同MyFirstMobileAppHomeView.mxml一样在MyNewView.mxml也同样放置一个Label和一个Button组件然后给它的Button添加一个事件点击后让它回到Home(主页)完整的代码 ?xml version1.0 encodingutf-8?s:View xmlns:fxhttp://ns.adobe.com/mxml/2009 xmlns:slibrary://ns.adobe.com/flex/spark titleSecondScreenfx:Declarations!-- Place non-visual elements (e.g., services, value objects) here --/fx:Declarationsfx:Script![CDATA[ protected function button1_clickHandler(event:MouseEvent):void { navigator.popView(); } ]]/fx:Scripts:VGroup width100% height100% horizontalAligncenter verticalAlignmiddles:Label textSuccess!/s:Button labelBack clickbutton1_clickHandler(event)//s:VGroup/s:View 现在工程的目录结构 右击工程选择Debug AS – Mobile Application 在弹出的面板中选中“Launch method”的第一项“On deskop”然后在下拉框中选择“HTC Desire” 应用并调试(Debug)这里因为没有应用任何的样式所以外观看上去有些粗糙 :( 应用样式后看上去就不一样了看上去很Nice.. 转载于:https://www.cnblogs.com/meteoric_cry/archive/2011/07/06/2099612.html