navigator.popView() 在 Flex 4.5 移动导航中不起作用

发布于 2024-11-25 06:31:38 字数 281 浏览 1 评论 0原文

我在 Flex 4.5 移动应用程序中导航回之前的视图时遇到问题。

在主应用程序文件(在 src//default 下)中,我在操作内容中创建了一个后退按钮,因此可以在任何视图中使用。我可以看到然后回到我之前的视图。

我正在使用 navigator.popView(); 当按下后退按钮时。

但是,它会进入空白屏幕 但是,如果您使用模拟器的后退按钮,它会返回到之前的视图。我正在使用 navigator.pushView 移动到下一个视图。

任何帮助,赞赏

I am having problem in navigating back to my previous view in flex 4.5 mobile application.

In the main application file(under src//default), I have created a back button in the action content so, that be in any view. I can see then and go back to my previous view.

I am using
navigator.popView(); when the back button is pressed.

However, it goes to a blank screen
But however, if you use the emulator's back button it goes back to a previous view. I am using navigator.pushView to move to a next view.

Any help, appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

电影里的梦 2024-12-02 06:31:38

我找到了解决方案。使用:

navigator.activeView.navigator.popView();

I found the solution. using:

navigator.activeView.navigator.popView();
遮云壑 2024-12-02 06:31:38

在导航到下一个视图之前,尝试使用推送方法,即 this.navigate.pushView(Viewname,contenttouse_in_next_Screen,"stattuscontext");

每当您从当前视图弹出时,您都会返回到上一个视图。 。

before you navigate to next view , try to use push method i.e. this.navigate.pushView(Viewname,contenttouse_in_next_Screen,"stattuscontext");

whenever you pop from current view you will get back to previous view...

少女净妖师 2024-12-02 06:31:38

我也有同样的问题。我认为应用程序firstview 没有堆叠在Android 的导航器中。

我用了一个小技巧。我创建了一些空白视图(test.mxml)。然后我做了:

ViewNavigatorApplication's firstView=test.mxml

test.mxml只有一个预初始化事件侦听器,其中有navigator.pushView([original firstView])

示例:

----MainApplication.mxml

<s:ViewNavigatorApplication 
   xmlns:fx="http://ns.adobe.com/mxml/2009"
   xmlns:s="library://ns.adobe.com/flex/spark" 
   firstView="Test">

----Test.mxml

<s:View 
   xmlns:fx="http://ns.adobe.com/mxml/2009" 
   xmlns:s="library://ns.adobe.com/flex/spark"
   preinitialize="eventPreinitialize();">
   <fx:Script>
      <![CDATA[
         private function eventPreinitialize():void{
            navigator.pushView(OriginalFirstView);
         }
      ]]>
   </fx:Script>
</s:View>

----OriginalFirstView.mxml

<s:View 
   xmlns:fx="http://ns.adobe.com/mxml/2009" 
   xmlns:s="library://ns.adobe.com/flex/spark">
   <fx:Script>
      <![CDATA[
         //have variable actions
      ]]>
   </fx:Script>
</s:View>

I had the same problem. I think that the application firstview didn't get stacked in navigator in Android.

I used a small trick. I created some blank view (test.mxml). Then I did:

ViewNavigatorApplication's firstView=test.mxml

test.mxml only has a preinitialize event listener which has navigator.pushView([original firstView]).

Examples:

----MainApplication.mxml

<s:ViewNavigatorApplication 
   xmlns:fx="http://ns.adobe.com/mxml/2009"
   xmlns:s="library://ns.adobe.com/flex/spark" 
   firstView="Test">

----Test.mxml

<s:View 
   xmlns:fx="http://ns.adobe.com/mxml/2009" 
   xmlns:s="library://ns.adobe.com/flex/spark"
   preinitialize="eventPreinitialize();">
   <fx:Script>
      <![CDATA[
         private function eventPreinitialize():void{
            navigator.pushView(OriginalFirstView);
         }
      ]]>
   </fx:Script>
</s:View>

----OriginalFirstView.mxml

<s:View 
   xmlns:fx="http://ns.adobe.com/mxml/2009" 
   xmlns:s="library://ns.adobe.com/flex/spark">
   <fx:Script>
      <![CDATA[
         //have variable actions
      ]]>
   </fx:Script>
</s:View>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文