我有一个定义如下的spark列表:
<s:List id="nextRoundButtonList" includeIn="TournamentQuestion" y="563" width="480" height="32"
change="nextRoundClicked(event)" color="#32CD32" contentBackgroundColor="#3B4CA1"
fontSize="24" horizontalCenter="0" textAlign="center">
稍后在代码中,我想更改列表的高度,但是我很难这样做。我试过了两个
nextRoundButtonList.setActualSize(nextRoundButtonList.width, 64);
和
nextRoundButtonList.height = 64;
但这些似乎都没有做任何事情。如何动态更改列表的高度?