我正在设计聊天应用程序,并决定使用状态。
但是在切换到另一个状态后,TextArea.setText在navigatorContent内部无效(对对象的null引用)。
在navigatorContent之外,代码工作正常。
(第一阶段模拟登录窗口,第二阶段模拟客户端/服务器的消息区域。)
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
width="304" height="283">
<fx:Script>
<![CDATA[
protected function changeState(event:MouseEvent):void{
// change state
setCurrentState("State2");
// set text
appendText("Hello world");
}
private function appendText(msg:String):void{
textArea1.text = msg;
}
]]>
</fx:Script>
<s:states>
<s:State name="State1"/>
<s:State name="State2"/>
</s:states>
<s:Button includeIn="State1" label="State 2" click="changeState(event)" horizontalCenter="0"
verticalCenter="0"/>
<mx:TabNavigator includeIn="State2" x="0" y="0" width="100%" height="100%">
<s:NavigatorContent width="100%" height="100%" label="Tab 1">
<s:TextArea id="textArea1" x="0" y="0" width="100%" height="100%"/>
</s:NavigatorContent>
</mx:TabNavigator>
</s:WindowedApplication>
答案 0 :(得分:0)
这样做,将TabNavigator上的creationPolicy属性设置为“all”。