我正在 Flash Builder 4.5 中创建一个虚拟移动应用程序。在应用程序代码中,我使用 VGroup,并且在朗姆酒时间添加和删除元素。现在我想将 VGroup 背景颜色设置为黑色。
我怎样才能做到这一点?
我正在 Flash Builder 4.5 中创建一个虚拟移动应用程序。在应用程序代码中,我使用 VGroup,并且在朗姆酒时间添加和删除元素。现在我想将 VGroup 背景颜色设置为黑色。
我怎样才能做到这一点?
你不能: VGroup 是一个布局容器。它不包含图形元素。
阅读有关布局容器的答案以获取更多信息:将布局添加到 Flex UIComponent
如果您不想触摸 VGroup,最简单的问题解决方案是这样的:
<s:Group>
<s:Rect left="0" right="0" top="0" bottom="0">
<s:fill>
<s:SolidColor color="0x000000" />
</s:fill>
</s:Rect>
<s:VGroup left="0" right="0" top="0" bottom="0">
<!--content goes here-->
</s:VGroup>
</s:Group>
但你也可以使用BorderContainer代替:
<s:BorderContainer backgroundColor="black">
<s:layout>
<s:VerticalLayout />
</s:layout>
<!--content goes here-->
</s:BorderContainer>