我在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
}