1

如何最大化Callout,以便在屏幕上占用最大的可用空间?

我正在尝试在标注中显示 ViewNavigator,虽然它可以工作,但显示View的内容太窄:

在此处输入图像描述

在同一个程序中,我有另一个程序Callout,它足够宽:

在此处输入图像描述

它们之间唯一的两个区别是后者附加到CalloutButton并且后者包含Score我为其设置的自定义组件:

    override protected function measure():void {
        super.measure();
        measuredWidth = Capabilities.screenResolutionX;
        measuredHeight = Capabilities.screenResolutionY;
    }

我一直盯着Callout.as代码,但找不到办法欺骗它以占用大部分可用空间。

我的自定义 mxml 组件非常简单:

播放器信息.mxml:

<?xml version="1.0" encoding="utf-8"?>
<s:Callout 
    xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:s="library://ns.adobe.com/flex/spark"
    contentBackgroundAppearance="none">

    <fx:Script>
        <![CDATA[
            [Bindable]
            public var userid:String;
        ]]>
    </fx:Script>

    <s:ViewNavigator 
        firstView="views.Profile"
        firstViewData="{userid}">
        <s:navigationContent>
            <s:Button label="Close" click="close()" />
        </s:navigationContent>
    </s:ViewNavigator>

</s:Callout>        
4

1 回答 1

1

标注扩展了 Container,因此将宽度和高度设置为 100% 应该不会有问题。
此外,在标注代码中有一个方法:

/**
 *  @private
 *  Force a new measurement when callout should use it's screen-constrained
 *  max size.
 */
private function invalidateMaxSize():void
{
    // calloutMaxWidth and calloutMaxHeight don't invalidate 
    // explicitMaxWidth or explicitMaxHeight. If callout's max size changes
    // and explicit max sizes aren't set, then invalidate size here so that
    // callout's max size is applied.
    if (!canSkipMeasurement() && !isMaxSizeSet)
        skin.invalidateSize();
}

因此,尝试设置“explicitMaxWidth”和“explicitMaxHeight”属性。

于 2012-12-05T17:43:19.780 回答