Posts

Showing posts with the label mobile flex project -navigation screens

Navigation between Screens in Mobile Flex Project 4.5

Image
Flex 4.5 (mobile development with Flex): Navigation between Screens in Mobile Flex Project Output: Use the Simple method   "navigator.pushView()" to navigate between Screens . Pass next screen view as the parameter in the method . Main.mxml: <?xml version="1.0" encoding="utf-8"?> <s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"  xmlns:s="library://ns.adobe.com/flex/spark" firstView="views.HomeView" applicationDPI="160"> <fx:Declarations> <!-- Place non-visual elements (e.g., services, value objects) here --> </fx:Declarations> </s:ViewNavigatorApplication> HomeView.mxml: <?xml version="1.0" encoding="utf-8"?> <s:View xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" actionBarVisible="false" tabBarVisible="true...