应用程序意外停止:如何调试Flash Builder

时间:2012-11-04 16:36:18

标签: flex

我需要使用移动调试模式,但每次运行调试模式时。 flex在我的手机上安装了一个应用程序,然后我的手机显示“应用程序已停止”。 messeage。 flex跳出调试模式,我甚至无法打开已安装的应用程序。应用程序甚至没有数据服务附加到它或任何UIobject上它期望基本的。有什么原因??

我的代码很简单

<?xml version="1.0" encoding="utf-8"?>
<s:TabbedViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
                                  xmlns:s="library://ns.adobe.com/flex/spark" applicationDPI="160">
    <s:ViewNavigator label="Bidding" width="100%" height="100%" firstView="views.BiddingView"/>
    <s:ViewNavigator label="Reuse" width="100%" height="100%" firstView="views.ReuseView"/>
    <s:ViewNavigator label="Account" width="100%" height="100%" firstView="views.AccountView"/>
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
</s:TabbedViewNavigatorApplication>

就像这样。

视图的代码就像这三个一样。

<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009" 
        xmlns:s="library://ns.adobe.com/flex/spark" title="Account">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
</s:View>

我正在使用Flex 4.6,此应用程序是为Android开发的。

0 个答案:

没有答案