我想在滾動條中放置多個列表(每個列表不滾動)。我在下面做的工作,但每個列表後面有一個巨大的隨機差距。我已經檢查過renderers.Pending,沒有任何東西導致差距。我注意到它只發生在我將verticalScrollPolicy設置爲關閉時。我不想將它設置爲開啓,否則列表本身將會滾動。Flex:將多個列表放在滾動條中
<s:Scroller height="80%" width="100%">
<s:VGroup width="100%">
<s:Label bottom="5" width="100%" styleName="normalWhite" text="Heading 1" textAlign="left" fontSize="18" />
<s:List id="pendingList1"
width="100%"
includeIn="pending"
dataProvider="{Info}" contentBackgroundAlpha="0"
itemRenderer="renderers.Pending"
styleName="customList" alternatingItemColors="[#13237d]"
selectionColor="#009de0"
dragEnabled="false"
dragMoveEnabled="false"
dropEnabled="false"
verticalScrollPolicy="off">
<s:layout>
<s:VerticalLayout horizontalAlign="justify" gap="1"/>
</s:layout>
</s:List>
<s:Label bottom="5" width="100%" styleName="normalWhite" text="Heading 2" textAlign="left" fontSize="18" />
<s:List id="pendingList2"
width="100%"
includeIn="pending"
dataProvider="{Info}" contentBackgroundAlpha="0"
itemRenderer="renderers.Pending"
styleName="customList" alternatingItemColors="[#13237d]"
selectionColor="#009de0"
dragEnabled="false"
dragMoveEnabled="false"
dropEnabled="false"
verticalScrollPolicy="off">
<s:layout>
<s:VerticalLayout horizontalAlign="justify" gap="1"/>
</s:layout>
</s:List>
</s:VGroup>
</s:Scroller>
嘗試將所有'List'的'height'設置爲'100%'。 – NINCOMPOOP
這只是切斷了每個列表中的項目。 – Julia
我沒有將其設置爲100%,因此所有項目都將顯示爲不滾動每個列表。然後滾動器應該允許用戶滾動瀏覽所有列表和他們的項目。 – Julia