0

我有一个名为 NewsLayout 的自定义布局:

    override public function updateDisplayList(width:Number, height:Number)
        : void
    {
        super.updateDisplayList( width, height );

        var layoutTarget:GroupBase = target;

        var element:ILayoutElement;

        for( var i:int = 0; i < layoutTarget.numElements; i++ )
        {
            element = layoutTarget.getElementAt( i );


            if(i==0){
                element.setLayoutBoundsSize( NaN, NaN );
                element.setLayoutBoundsPosition( 0, 0 );
            }
            else if(i==1)
            {
                var refEl = layoutTarget.getElementAt( 0 );
                element.setLayoutBoundsSize( NaN, NaN );
                element.setLayoutBoundsPosition( 0, refEl.height+5);
            }
            else if(i==2)
            {
                var refEl = layoutTarget.getElementAt( 0 );
                var refEl2 = layoutTarget.getElementAt( 1 );
                element.setLayoutBoundsSize( NaN, NaN );                    
                element.setLayoutBoundsPosition( Math.max(refEl2.width,refEl.width)+5, 0);


            }
        }
    }

我的自定义组件使用了这个布局和另外三个。它的布局可能会即时改变。无论它使用哪种布局,我的组件都应该将所有元素包装在其中。

为此,我尝试覆盖 measure 方法以根据其中的组件调整组件的大小。我正在尝试像这样计算其中所有项目的底点。没想到所有元素的 y 位置都是 0,但正如你所见,我在布局类中设置了它们的坐标。

    override protected function measure():void {

            super.measure(); var max= 0;
            for(var i=0 ; i < this.numElements;i++)
            {
                if((this.getElementAt(i).height +this.getElementAt(i).y) > max)
                    max = this.getElementAt(i).height + this.getElementAt(i).y;// here y position is 0
            }
            //this.height =this.measuredHeight;
            this.measuredHeight = max;
            this.height = max;
            trace("maxheight:"+max);

不管它使用什么布局,让组件将所有元素包装在其中的正确方法是什么?

4

1 回答 1

0

在 flex 组件生命周期中 measure() 调用一次并且在 updateDisplayList() 之前调用;因此,您的组件的 y 位置为 0;尝试对 updateDisplayList() 中的所有元素使用 setActualSize(width, height)。

于 2013-03-25T13:25:32.083 回答