I've got a test mobile project app in Flex composed simply of a TabbedViewNavigatorApplication with two tabs - on one tab I have nothing and on the other I have a flexpad:List with an inline ArrayCollection just for testing - I have about 50 items in the list with just a label. It takes a long time to load the tab with this list on it and scrolling the list is really slow and jumpy. With so little in this app to start i'm thinking i'm probably doing something very wrong to get this really aweful performance. Any clues what to do? I'm using the latest AIR, Flex SDK 4.6, all systems are up to date.
Here is the Tab that seems slow:
<?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" xmlns:flexpad="http://code.google.com/p/flexpad/" title="Tab 2">
<flexpad:List width="300" height="200">
<s:ArrayCollection>
<fx:Object label="Label One"></fx:Object>
<fx:Object label="Label Two"></fx:Object>
<fx:Object label="Label Three"></fx:Object>
<fx:Object label="Label Four"></fx:Object>
<fx:Object label="Label Five"></fx:Object>
<fx:Object label="Label One"></fx:Object>
<fx:Object label="Label Two"></fx:Object>
<fx:Object label="Label Three"></fx:Object>
<fx:Object label="Label Four"></fx:Object>
<fx:Object label="Label Five"></fx:Object>
<fx:Object label="Label One"></fx:Object>
<fx:Object label="Label Two"></fx:Object>
<fx:Object label="Label Three"></fx:Object>
<fx:Object label="Label Four"></fx:Object>
<fx:Object label="Label Five"></fx:Object>
<fx:Object label="Label One"></fx:Object>
<fx:Object label="Label Two"></fx:Object>
<fx:Object label="Label Three"></fx:Object>
<fx:Object label="Label Four"></fx:Object>
<fx:Object label="Label Five"></fx:Object>
<fx:Object label="Label One"></fx:Object>
<fx:Object label="Label Two"></fx:Object>
<fx:Object label="Label Three"></fx:Object>
<fx:Object label="Label Four"></fx:Object>
<fx:Object label="Label Five"></fx:Object>
<fx:Object label="Label One"></fx:Object>
<fx:Object label="Label Two"></fx:Object>
<fx:Object label="Label Three"></fx:Object>
<fx:Object label="Label Four"></fx:Object>
<fx:Object label="Label Five"></fx:Object>
</s:ArrayCollection>
</flexpad:List>
</s:View>