Flexのテストモバイルプロジェクトアプリは、2つのタブを持つTabbedViewNavigatorApplicationで構成されています。一方のタブには何もありません。もう一方のタブには、テスト用のインラインArrayCollectionを含むflexpad:Listがあります。ラベルだけのリスト。このリストが表示されたタブをロードするには長い時間がかかり、リストのスクロールは非常に遅くてジャンプします。このアプリの起動が非常に少ないので、この本当に素晴らしいパフォーマンスを得るために、おそらく非常に間違ったことをしていると思います。何をすべきか手がかりはありますか?最新のAIRであるFlexSDK4.6を使用していますが、すべてのシステムが最新です。
遅いように見えるタブは次のとおりです。
<?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>