1

我需要使用移动调试模式,但每次我运行调试模式。flex 在我的手机上安装了一个应用程序,然后我的手机显示“应用程序已停止”。消息。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 开发的。

4

0 回答 0