I want to use a flex multi-page form on thew newly re开发者_C百科leased Adobe AIR for android platform. I have a sequence of 30-40 screens on the form and the user can exit in between(storing the partial data entered). Is there a sample application for this, or can someone tell me the architecture to build such an application with lots of views? I want to store the data both on the device(sqlite) as well as a remote web server. The closest help I found was here
Architecture is up to the solution you're trying to implement. In this case, it's as simple as having a centralized data model somewhere that either binds or sets the data on each view so that it can be reused across all views.
If I were you, I'd look at RobotLegs to accomplish this using dependency injection since it leaves the door open for more complex architectural situations in the future.
There aren't going to be any examples out there to do exactly what you want. There are several Flex for Android tutorials out there though. Here are a few to get you started:
- Intro to Flex 4.5 Android Programming
- Tutorial: Flex for Android in 90 Minutes
- Developing a mobile application with Flex 4.5, AIR 2.5, Flash Builder Burrito, WCF and the Entity Framework
- Swipe Gestures using Flex 4.5 Hero/Burrito on Android
- Android Components for Flex 4.5
精彩评论