将Flash Builder 4.5移动应用程序VGroup背景颜色设置为黑色

时间:2012-07-09 08:58:01

标签: flex air flex4.5 flex-mobile flash-builder4.5

我正在Flash Builder 4.5中创建一个虚拟移动应用程序。在应用程序代码中,我正在使用VGroup,我在朗姆酒时添加和删除元素。现在我想将VGroup背景颜色设置为黑色。

我该怎么做?

1 个答案:

答案 0 :(得分:6)

你不能:VGroup是一个布局容器。它不包含图形元素 阅读有关布局容器的答案,获取更多信息:Add layout to 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>