相当于用于Android的钛的NavigationWindow

时间:2014-07-09 06:31:18

标签: android iphone titanium-mobile titanium-alloy

我在iphone上创建了一个应用程序,现在客户端想要在Android平台上使用相同的应用程序。导航由IOS中的导航窗口处理,但无法找到类似于android的任何内容。我已经尝试了here给出的解决方案我正在使用Titanium Alloy框架来开发应用程序。 这是适用于iphone的示例代码。

AlloyView1.xml

<Alloy>
  <NavigationWindow id="navParent">
    <Window>
       <TextField id= "txtUsername" width="120" height = "40"/>
       <Button id="btnNext" width="100" height="40" onClick="goNext"/>
    </Window>
  </NavigationWindow>
</Alloy>



AlloyView1.js

  $.AlloyView1.open();
  var navParentWin = $.navParent;
  function goNext(e){
     var nav
     var controllerView = Alloy.createController('Home').getView();
     navParentWin.openWindow(controllerView);
  }



 Home.xml

  <Alloy>
     <Window>
       <!--  Some View -->
     </Window>
  </Alloy>

home.js

//一些代码..

 function xyz(){
  //something here
  }

0 个答案:

没有答案